forked from Automattic/_s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.02 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
{
"name": "silverbackstudio/theme_svbk",
"description": "Silverback _svbk Theme",
"type": "wordpress-theme",
"license": "MIT",
"authors": [
{
"name": "Silverback Studio",
"email": "webmaster@silverbackstudio.it"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://packages.svbk.it"
}
],
"require": {
"silverback/wp-helpers": "^5.4.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3.5"
},
"autoload": {
"psr-4": {"Svbk\\WP\\Theme\\_svbk\\": "inc/"},
"classmap": [ "classes/" ]
},
"scripts": {
"test": [
"vendor/bin/phpcs"
],
"beautify": [
"vendor/bin/phpcbf"
]
}
}