-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.07 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
{
"name": "newfold-labs/wp-module-patterns",
"description": "WordPress Cloud Patterns",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Hristina Conjic",
"email": "hristina.conjic@newfold.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://newfold-labs.github.io/satis/",
"only": [
"newfold-labs/*"
]
}
],
"require": {
"newfold-labs/wp-module-data": "^2.5.1",
"newfold-labs/wp-module-features": "^1.4",
"newfold-labs/wp-module-installer": "^1.1"
},
"require-dev": {
"newfold-labs/wp-php-standards": "^1.2.2"
},
"autoload": {
"psr-4": {
"NewfoldLabs\\WP\\Module\\Patterns\\": "includes"
},
"files": [
"bootstrap.php"
]
},
"scripts": {
"lint": [
"vendor/bin/phpcs . --ignore=*/build/* --standard=Newfold -d error_reporting=\"E_ALL&~E_DEPRECATED\""
],
"clean": [
"vendor/bin/phpcbf . --ignore=*/build/* --standard=Newfold -d error_reporting=\"E_ALL&~E_DEPRECATED\""
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}