-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.17 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": "alal/alal-sdk",
"description": "Official PHP SDK to interact with Alal's API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Alal\\Client\\": "src/"
}
},
"authors": [
{
"name": "kepsonDiaz",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false,
"pestphp/pest-plugin": true
}
},
"require": {
"php": "^8.1",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.12",
"php-http/guzzle7-adapter": "^v1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"symfony/options-resolver": "^5.2",
"phpunit/phpunit": "9.6.12",
"phpunit/php-file-iterator": "^3.0.5"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.4",
"mockery/mockery": "2.0.x-dev",
"pestphp/pest": "1.x-dev",
"php-http/curl-client": "^2.1",
"php-http/mock-client": "^1.4",
"symfony/var-dumper": "^5.1"
}
}