-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
56 lines (56 loc) · 1.3 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
{
"name": "upstatement/skela-wp-theme",
"authors": [
{
"name": "Upstatement",
"email": "[email protected]"
}
],
"description": "WordPress theme",
"license": "proprietary",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"extra": {
"installer-paths": {
"plugins/{$name}/": [
"wpackagist-plugin/*",
"type:wordpress-plugin"
]
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.2"
}
},
"autoload": {
"psr-4": {
"Skela\\": "src"
}
},
"require": {
"wpackagist-plugin/wp-environment-indicator": "^1.0",
"wpackagist-plugin/wp-help": "^1.7",
"wpackagist-plugin/debug-bar": "^1.1",
"wpackagist-plugin/debug-bar-timber": "@stable",
"vlucas/phpdotenv": "^5.4",
"timber/timber": "^1.19",
"nesbot/carbon": "^2.54",
"php-ds/php-ds": "^1.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"friendsofphp/php-cs-fixer": "^3.3",
"symfony/var-dumper": "^4.4",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"szepeviktor/phpstan-wordpress": "^1.0",
"php-stubs/acf-pro-stubs": "^5.10"
}
}