forked from Upstatement/skela-wp-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.11 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
{
"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",
"vlucas/phpdotenv": "^3.3",
"timber/timber": "^1.10",
"nesbot/carbon": "^2.19",
"php-ds/php-ds": "^1.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"friendsofphp/php-cs-fixer": "^2.15",
"symfony/var-dumper": "^4.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wp-coding-standards/wpcs": "*",
"szepeviktor/phpstan-wordpress": "^0.7.1",
"php-stubs/acf-pro-stubs": "^5.8"
}
}