-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
48 lines (48 loc) · 1.27 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
{
"name": "humanmade/amf-wordpress",
"description": "Use another WordPress site as source for your media library.",
"type": "wordpress-plugin",
"homepage": "https://github.com/humanmade/amf-wordpress",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Human Made",
"homepage": "https://humanmade.com"
}
],
"support": {
"issues": "https://github.com/humanmade/orphan-command/issues"
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"composer/installers": "^1.0",
"humanmade/asset-manager-framework": "^0.13.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"humanmade/coding-standards": "^1.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"classmap": [
"inc"
],
"files": [
"inc/namespace.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"lint": "find ./plugin.php ./inc/ -type f -name '*.php' -print0 | xargs -0 -L 1 -P 4 -- php -l",
"phpcs": "phpcs .",
"test": [
"@lint",
"@phpcs"
]
}
}