-
Notifications
You must be signed in to change notification settings - Fork 173
/
composer.json
47 lines (47 loc) · 1.22 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
45
46
47
{
"name": "podio-community/podio-php",
"description": "PHP Client for Podio API",
"keywords": ["podio"],
"homepage": "https://github.com/podio-community/podio-php",
"license": "MIT",
"scripts": {
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover clover.xml --bootstrap vendor/autoload.php tests"
],
"upload-coverage": "php-coveralls --coverage_clover=clover.xml -v"
},
"authors": [
{
"name": "Daniel Schreiber",
"email": "daniel-schreiber@gmx.de"
},
{
"name": "Andreas Haugstrup Pedersen",
"email": "haugstrup@podio.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"guzzlehttp/guzzle": ">=6.2.0",
"guzzlehttp/psr7": ">=1.7.0",
"ext-json": "*"
},
"suggest": {
"composer/ca-bundle": "Improve security through providing current CA ROOT certificates bundle",
"kint-php/kint": "Debugging helper for web setups"
},
"autoload": {
"classmap": ["lib/", "lib/error/", "models/", "models/field/"]
},
"autoload-dev": {
"psr-4": {
"Podio\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^9.5.8"
}
}