forked from loopline-systems/closeio-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "loopline-systems/closeio-api-wrapper",
"description": "A PHP wrapper for the Close.io Api",
"license": "MIT",
"keywords": ["closeio", "close.io", "php", "api", "rest-api"],
"authors": [
{
"name": "Michael Devery",
"email": "michael.devery@loopline-systems.com"
},
{
"name": "Marco Roßdeutscher",
"email": "marco.rossdeutscher@loopline-systems.com"
},
{
"name": "Marc Zahn",
"email": "marc.zahn@loopline-systems.com"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"doctrine/inflector": "^1.4",
"fig/http-message-util": "^1.1",
"php-http/client-common": "^1.5|^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.6",
"php-http/httplug": "^1.1|^2.0",
"psr/http-message-implementation": "^1.0",
"symfony/polyfill-intl-idn": "^1.22",
"symfony/polyfill-php74": "^1.22",
"symfony/polyfill-php80": "^1.22",
"symfony/polyfill-php81": "^1.22"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"php-coveralls/php-coveralls": "^2.4",
"php-http/mock-client": "^1.4",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.2"
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-php54": "*",
"symfony/polyfill-php55": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*"
},
"autoload": {
"psr-4": {
"LooplineSystems\\CloseIoApiWrapper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\LooplineSystems\\CloseIoApiWrapper\\": "tests"
}
},
"scripts": {
"tests": [
"vendor/bin/phpunit --verbose"
],
"phpcs": [
"vendor/bin/php-cs-fixer fix --verbose --diff --dry-run"
],
"phpstan": [
"vendor/bin/phpstan analyse src tests --level=4"
]
},
"config": {
"sort-packages": true
}
}