-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
59 lines (59 loc) · 1.53 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
{
"name": "alleyinteractive/wp-asset-manager",
"description": "Asset Manager is a toolkit for managing front-end assets and more tightly controlling where, when, and how they're loaded.",
"license": "GPL-2.0-only",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"wordpress-plugin"
],
"authors": [
{
"name": "Alley Interactive",
"email": "[email protected]"
}
],
"require-dev": {
"alleyinteractive/alley-coding-standards": "^2.0",
"mantle-framework/testkit": "^1.2"
},
"prefer-stable": true,
"autoload": {
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Alley\\WP\\Asset_Manager\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"alleyinteractive/composer-wordpress-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"wordpress-autoloader": {
"autoload": {
"Alley\\WP\\Asset_Manager\\": "src/"
},
"autoload-dev": {
"Alley\\WP\\Asset_Manager\\Tests\\": "tests/"
}
}
},
"scripts": {
"lint": "@phpcs",
"lint:fix": "@phpcbf",
"phpcbf": "phpcbf .",
"phpcs": "phpcs --standard=./phpcs.xml .",
"phpunit": "phpunit",
"test": [
"@phpcs",
"@phpunit"
]
}
}