-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (34 loc) · 1.08 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
{
"require": {
"guzzlehttp/guzzle": "~7.4.1",
"psr/log": "^1.1",
"ext-json": "*",
"coyote/coyote-php-content-helper": "^1.0.5",
"coyote/coyote-api-client": "^1.0.21",
"monolog/monolog": "^2.6",
"twig/twig": "^3.0"
},
"autoload" : {
"classmap": [
"php/",
"vendor_prefixed/"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"humbug/php-scoper": "^0.17.5"
},
"minimum-stability": "stable",
"scripts": {
"prefix-dependencies": [
"composer prefix-monolog",
"composer prefix-psr"
],
"prefix-monolog": [
"@php ./vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=PAC_Vendor --output-dir=./vendor_prefixed/monolog --config=config/scoper.monolog.php --force --quiet"
],
"prefix-psr": [
"@php ./vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=PAC_Vendor --output-dir=./vendor_prefixed/psr --config=config/scoper.psr.php --force --quiet"
]
}
}