-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.06 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
58
59
60
61
62
63
64
{
"name": "jesusfilm/jesus-film-www",
"type": "wordpress-theme",
"description": "Default theme for jesusfilm.org",
"keywords": [
"WordPress",
"wordpress-theme-development",
"genesis-framework"
],
"license": "GPL-3.0",
"authors": [
{
"name": "David Jensen",
"homepage": "https://dkjensen.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/JesusFilm/jesus-film-www/issues",
"source": "https://github.com/JesusFilm/jesus-film-www"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"brain/monkey": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "v0.7.1",
"phpcompatibility/phpcompatibility-wp": "2.1.1",
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.7.1",
"wp-coding-standards/wpcs": "^2.3.0",
"wp-phpunit/wp-phpunit": "^5.7.2",
"php-stubs/woocommerce-stubs": "^5.3",
"automattic/vipwpcs": "^2.3.3",
"php-stubs/wordpress-stubs": "^5.9"
},
"autoload-dev": {
"psr-4": {
"SeoThemes\\JesusFilmProject\\Tests\\Unit\\": "tests/php/unit/",
"SeoThemes\\JesusFilmProject\\Tests\\Integration\\": "tests/php/integration/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-order": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"stylelint": [
"stylelint './resources/scss/**/*.scss' --fix"
],
"install-codestandards": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"phpcs": "phpcs --standard=WordPress --extensions=php -p -s lib config templates tests functions.php",
"phpcbf": "phpcbf --standard=WordPress --extensions=php -p lib config templates tests functions.php",
"test-unit": "composer dump && \"vendor/bin/phpunit\" --testsuite unit --color=always",
"test-integration": "composer dump && \"vendor/bin/phpunit\" --testsuite integration --configuration tests/phpunit/integration/phpunit.xml.dist --color=always"
}
}