-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 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
44
{
"name": "abb/fakturownia",
"type": "library",
"description": "PHP client for Fakturownia API",
"keywords": ["fakturownia", "invoiceocean", "api", "php", "client"],
"license": "MIT",
"authors": [
{
"name": "abb",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Abb\\Fakturownia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Abb\\Fakturownia\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"nyholm/psr7": "^1.8",
"psr/http-client": "^1.0",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"symfony/http-client-contracts": "^2.5 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"tests": "vendor/bin/phpunit tests",
"php-cs": "vendor/bin/php-cs-fixer fix --diff --dry-run --no-interaction -v",
"php-cs-fix": "vendor/bin/php-cs-fixer fix"
},
"config": {
"sort-packages": true
}
}