-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 2.32 KB
/
composer.json
File metadata and controls
95 lines (95 loc) · 2.32 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "sitecrafting/conifer",
"description": "Powerful abstractions for serious WordPress theme development",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/sitecrafting/wp_mock"
}
],
"license": "MIT",
"authors": [
{
"name": "Coby Tamayo",
"email": "ctamayo@sitecrafting.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-libxml": "*",
"timber/timber": "^2.2"
},
"require-dev": {
"10up/wp_mock": "dev-dev",
"behat/behat": "^3.25.0",
"johnpbloch/wordpress-core": "^6.5.5",
"johnpbloch/wordpress-core-installer": "^2.0.0",
"mikey179/vfsstream": "~1",
"mnsami/composer-custom-directory-installer": "^2.0",
"php-stubs/acf-pro-stubs": "^6.5",
"phpunit/phpunit": "^9.0",
"rector/rector": "^2.2",
"sitecrafting/groot": "dev-master",
"szepeviktor/phpstan-wordpress": "^2.0.3",
"wp-coding-standards/wpcs": "^3.2.0"
},
"config": {
"platform": {
"php": "8.1"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true,
"mnsami/composer-custom-directory-installer": true
}
},
"extra": {
"wordpress-install-dir": {
"johnpbloch/wordpress-core": "wp"
},
"installer-paths": {
"wp/wp-content/themes/groot": [
"sitecrafting/groot"
]
}
},
"autoload": {
"psr-4": {
"Conifer\\": "lib/Conifer/"
}
},
"autoload-dev": {
"psr-4": {
"ConiferTest\\": "test/unit/",
"ConiferTestSupport\\": "test/support/",
"Conifer\\Unit\\": "test/unit/",
"Conifer\\Unit\\Support\\": "test/support/"
}
},
"scripts": {
"unit": [
"./vendor/bin/phpunit"
],
"phpstan": [
"./vendor/bin/phpstan analyse"
],
"sniff-summary": [
"./vendor/bin/phpcs --report=summary --standard=./phpcs.xml conifer.php test lib"
],
"sniff": [
"./vendor/bin/phpcs --standard=./phpcs.xml conifer.php test lib"
],
"sniff-fix": [
"./vendor/bin/phpcbf --standard=./phpcs.xml conifer.php test lib"
]
}
}