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 4
/
composer.json
80 lines (80 loc) · 2.01 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
72
73
74
75
76
77
78
79
80
{
"name": "josantonius/wp-register",
"type": "library",
"description": "Register, minify and unify CSS and JavaScript resources.",
"keywords": [
"WordPress",
"register",
"enqueue",
"CSS",
"JS",
"Script",
"assets",
"minify CSS",
"unify CSS",
"minify JS",
"unify JS",
"Style",
"HHVM",
"PHP"
],
"license": "MIT",
"authors": [
{
"name": "Josantonius",
"email": "[email protected]",
"homepage": "https://josantonius.dev",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/josantonius/wp-register/issues",
"forum": "http://stackoverflow.com/tags/josantonius/wp-register",
"source": "https://github.com/josantonius/wp-register"
},
"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"
]
}
}