-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
39 lines (39 loc) · 921 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
38
39
{
"name": "lasselehtinen/issuu",
"description": "Issuu API client for PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lasse Lehtinen",
"email": "lasse.lehtinen@iki.fi"
}
],
"require": {
"php" : "^8.2|^8.3",
"guzzlehttp/guzzle": "~6.0|~7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"phpro/grumphp": "^1.4",
"squizlabs/php_codesniffer": "^3.7",
"php-parallel-lint/php-parallel-lint": "^1.4",
"roave/security-advisories": "latest-dev",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"lasselehtinen\\Issuu\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"config": {
"allow-plugins": {
"phpro/grumphp": false
}
}
}