forked from sandwave-io/basekit-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.14 KB
/
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
40
41
42
43
{
"name": "sandwave-io/basekit-php",
"description": "A PHP SDK for the BaseKit REST API.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas Ploegaert",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2.0|^7.0.1",
"psr/log": "^1.1",
"webmozart/assert": "^1.3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.0",
"uptimeproject/php-cs-fixer-config": "^1.3",
"ekino/phpstan-banned-code": "^0.4",
"ergebnis/phpstan-rules": "^0.15",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"autoload": {
"psr-4": {
"SandwaveIo\\BaseKit\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"SandwaveIo\\BaseKit\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}