-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.19 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
{
"name": "awethemes/vn-shipping",
"description": "",
"type": "library",
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.1.8",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"mockery/mockery": "^1.3.0",
"symfony/options-resolver": "^4.4"
},
"autoload": {
"psr-4": {
"VNShipping\\": "inc/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"install-wp-test": [
"bash bin/install-wp-tests.sh wptest_vnshipping root 'secret' localhost latest"
],
"prefix-dependencies": [
"./bin/install-php-scoper.sh",
"@php ./bin/php-scoper add-prefix -c .scoper.inc.php --output-dir=./third-party --force",
"echo '{ \"autoload\": { \"classmap\": [\"\"] } }' > ./third-party/composer.json",
"@composer dump-autoload --working-dir ./third-party --no-dev --classmap-authoritative --optimize"
]
},
"config": {
"platform-check": false,
"optimize-autoloader": true,
"platform": {
"php": "7.1.8"
}
}
}