-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 942 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": "imper86/php-baselinker-api",
"description": "Simple wrapper for Baselinker.com API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "imper",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"imper86/php-http-cache-plugin": "^2.0",
"imper86/http-client-builder": "^2.0",
"myclabs/php-enum": "^1.8",
"jawira/case-converter": "^3.4"
},
"require-dev": {
"imper86/vbump": "^v1.0",
"php-http/guzzle6-adapter": "^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"phpstan/phpstan": "^0.12.80",
"symfony/var-dumper": "^5.2"
},
"autoload": {
"psr-4": {
"Imper86\\PhpBaselinkerApi\\": "src"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}