-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.37 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
{
"name": "future-shop/wp-future-shop",
"description": "WordPress plugin for connecting to Future Shop Cloud.",
"type": "wordpress-plugin",
"license": "MPL-2.0",
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": {},
"config": {
"sort-packages": true,
"process-timeout": 600,
"preferred-install": "dist",
"platform-check": false,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"FutureShop\\WordPress\\": "lib"
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wp-coding-standards/wpcs": "^2.3"
},
"scripts": {
"phpcs-run": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"lint": "./vendor/bin/phpcs --standard=./phpcs.xml",
"build": [
"composer install --no-dev --prefer-dist --optimize-autoloader",
"if [ ! -d './build' ]; then mkdir build; fi",
"rsync -arm --delete --force --filter='protect .git' --include-from='./.distinclude' . ./build/future-shop",
"composer install"
]
},
"extra": {}
}