-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 848 Bytes
/
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
{
"name": "xvilo/gofile-php-api",
"description": "GoFile API Client in PHP",
"license": "Apache-2.0",
"type": "library",
"autoload": {
"psr-4": {
"Xvilo\\GoFile\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xvilo\\GoFile\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"php-http/client-common": "^2.6",
"php-http/discovery": "^1.14",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"nyholm/psr7": "^1.5",
"symfony/var-dumper": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.13",
"rector/rector": "^1.0",
"phpstan/phpstan": "^1.10"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"platform-check": false
}
}