This repository has been archived by the owner on Aug 20, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
71 lines (71 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "josantonius/wp-menu",
"type": "library",
"description": "Add menu or submenu page in WordPress.",
"keywords": [
"Wordpress",
"Menu",
"Submenu",
"HHVM",
"PHP"
],
"license": "MIT",
"authors": [
{
"name": "Josantonius",
"email": "hello@josantonius.dev",
"homepage": "https://josantonius.dev",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/josantonius/wp-menu/issues",
"forum": "http://stackoverflow.com/tags/josantonius/wp-menu",
"source": "https://github.com/josantonius/wp-menu"
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"require": {
"php": "^5.6 || ^7.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^0.14",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpunit/phpunit": "^5.7 || ^6.0",
"squizlabs/php_codesniffer": "^3.2.2",
"friendsofphp/php-cs-fixer": "^2.3 || ^2.8",
"phpmd/phpmd": "^2.6"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --colors=always;",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml $(find . -name '*.php');",
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
"fix": [
"vendor/bin/php-cs-fixer fix -v",
"vendor/bin/phpcbf src tests"
],
"tests": [
"clear",
"@phpmd",
"@phpcs",
"@phpunit"
]
}
}