-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
99 lines (99 loc) · 2.45 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
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
96
97
98
99
{
"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",
"require": {
"php": ">=8.1",
"timber/timber": "^2.2"
},
"require-dev": {
"mikey179/vfsstream": "~1",
"behat/behat": "^3.4",
"johnpbloch/wordpress-core": "6.5.5",
"mnsami/composer-custom-directory-installer": "^2.0",
"sitecrafting/groot": "^1.0",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^2.3",
"acobster/wp-cli-yaml-fixtures": "^0.5.0",
"victorjonsson/markdowndocs": "dev-master",
"szepeviktor/phpstan-wordpress": "^1.3",
"paulthewalton/acf-stubs": "^5.8.7",
"johnpbloch/wordpress-core-installer": "dev-master",
"phpunit/phpunit": "^8",
"10up/wp_mock": "dev-dev"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"composer/installers": true,
"mnsami/composer-custom-directory-installer": true,
"johnpbloch/wordpress-core-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"
]
},
"config": {
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true,
"mnsami/composer-custom-directory-installer": true,
"composer/installers": true
}
}
}