-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
44 lines (44 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
{
"name": "humanmade/asset-manager-framework",
"description": "A framework for overriding the WordPress media library with an external asset provider.",
"homepage": "https://github.com/humanmade/asset-manager-framework/",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Human Made",
"homepage": "https://humanmade.com/"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.2",
"composer/installers": "~1.0 || ~2.0"
},
"require-dev": {
"automattic/phpcs-neutron-ruleset": "^3.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/phpcompatibility-wp": "~2.1.0",
"wp-coding-standards/wpcs": "~2.2.0"
},
"autoload": {
"psr-4": {
"AssetManagerFramework\\": "inc/"
}
},
"scripts": {
"test:cs": [
"vendor/bin/phpcs -nps --colors --report-code --report-summary --report-width=80 ."
],
"test": [
"@test:cs"
]
}
}