-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 831 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 831 Bytes
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
{
"name": "fapi-cz/fapi-client",
"description": "Library for accessing FAPI API.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jiří Slischka",
"email": "slischkaj@gmail.com"
}
],
"require": {
"php": "^8.1",
"fapi-cz/http-client": "^1.0"
},
"require-dev": {
"nette/tester": "^2.5",
"nette/di": "^3.1",
"nette/utils": "^4.0",
"guzzlehttp/guzzle": "6.3 | ^7.0",
"tracy/tracy": "^2.10",
"phpstan/phpstan-nette": "^1.2",
"phpstan/phpstan": "^1.10",
"orisai/coding-standard": "^3.10",
"phpstan/phpstan-strict-rules": "^1.5"
},
"suggest": {
"nette/di": "to use class FapiClientExtension"
},
"autoload": {
"psr-0": {
"Fapi\\FapiClient\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}