forked from woovibr/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.07 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
{
"name": "open-pix/php-sdk",
"description": "PHP OpenPix/Woovi SDK",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"OpenPix\\PhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require": {
"php": "^7.3 || ^8.0",
"php-http/discovery": "^1.18",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.17",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"cs:check": "php-cs-fixer fix . --dry-run --diff --format=txt --verbose",
"cs:fix": "php-cs-fixer fix .",
"stan": "phpstan analyse",
"test": "phpunit"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}