-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.74 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
{
"name": "codeinwp/fork",
"description": "Fork theme by Themeisle",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "Themeisle",
"email": "[email protected]",
"homepage": "https://themeisle.com"
}
],
"autoload": {
"psr-4": {
"Fork\\": "inc/"
},
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform-check": false,
"platform": {
"php": "7.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-disable": "true"
},
"require": {
"codeinwp/themeisle-sdk": "^3.2"
},
"require-dev": {
"codeinwp/phpcs-ruleset": "dev-main",
"phpunit/phpunit": "^6.5",
"automattic/vipwpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wp-coding-standards/wpcs": "^2.3",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"format-fix-exit": "\"vendor/bin/phpcbf-fix-exit-0\" --standard=phpcs.xml --report-summary --report-source -s --runtime-set testVersion 7.0- ",
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source -s --runtime-set testVersion 7.0- ",
"phpcs": "phpcs --standard=phpcs.xml -s --runtime-set testVersion 7.0-",
"lint": "composer run-script phpcs",
"phpcs-i": "phpcs -i",
"phpunit": "phpunit"
}
}