-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 loc) · 1.02 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "usamamuneerchaudhary/laraclient",
"description": "Package that simplifies the process of working with multiple APIs in Laravel.",
"keywords": [
"usamamuneerchaudhary",
"laravel-client",
"api",
"guzzlehttp",
"http",
"httpclient"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Usama Muneer",
"email": "hello@usamamuneer.me",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Usamamuneerchaudhary\\LaraClient\\": "src"
}
},
"require": {
"php": "^8.1",
"illuminate/database": ">=v10.1.4",
"illuminate/support": ">=v10.1.4",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^v8.0.4"
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}