-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 911 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 911 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
{
"name": "reset-button/a-parser-api-php-client",
"description": "PHP client for A-Parser API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ResetButton\\AparserPhpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Alexey Shatrov",
"email": "counterfate@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php" : "^8.1",
"guzzlehttp/guzzle" : "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.11",
"phpcompatibility/php-compatibility": "^9.3"
},
"homepage": "https://github.com/reset-button/a-parser-api-php-client",
"keywords": ["a-parser", "php", "client", "api"]
}