-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.48 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.48 KB
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": "integer-net/callback-proxy",
"description": "A proxy to dispatch callback requests to multiple targets. Useful to share payment integrations with multiple (e.g. test) systems.",
"type": "project",
"license": "MIT",
"require": {
"roave/security-advisories": "dev-master",
"slim/slim": "^3.0",
"guzzlehttp/guzzle": "^6.3",
"psr/http-message": "^1.0",
"php": "^7.1.0",
"ext-SPL": "*",
"namshi/cuzzle": "^2.0"
},
"require-dev": {
"pds/skeleton": "^1.0",
"phpunit/phpunit": "^7.4",
"phpro/grumphp": "^0.14.2",
"squizlabs/php_codesniffer": "^3.3",
"maglnet/composer-require-checker": "^1.1",
"phan/phan": "^1.1",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.10.3",
"infection/infection": "^0.10.5",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"autoload": {
"psr-4": {
"IntegerNet\\CallbackProxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IntegerNet\\CallbackProxy\\": "tests/"
}
},
"scripts": {
"test": "phpunit && infection && phpstan analyze --level 7 src tests && phan",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}