-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.54 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
{
"name": "felixarntz/wp-admin-notices",
"description": "An API for registering and rendering WordPress admin notices.",
"version": "1.0.0",
"license": "GPL-2.0-or-later",
"type": "library",
"keywords": [
"wordpress",
"admin",
"notices"
],
"homepage": "https://github.com/felixarntz/wp-admin-notices",
"authors": [
{
"name": "Felix Arntz",
"email": "[email protected]",
"homepage": "https://felix-arntz.me"
}
],
"support": {
"issues": "https://github.com/felixarntz/wp-admin-notices/issues"
},
"autoload": {
"psr-4": {
"Felix_Arntz\\WP_Admin_Notices\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Felix_Arntz\\WP_Admin_Notices\\Tests\\PHPUnit\\Framework\\": "tests/phpunit/framework"
}
},
"require": {
"php": ">=7.0",
"felixarntz/contracts": "dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4",
"wp-coding-standards/wpcs": "^1",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^6"
},
"suggest": {
"tfrommen/dobby": "Dobby, the friendly Admin Elf, takes care of all your (unwanted) admin notices."
},
"scripts": {
"phplint": "find -L . -path ./vendor -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"phpcs": "@php ./vendor/bin/phpcs",
"phpmd": "@php ./vendor/bin/phpmd src text phpmd.xml.dist",
"phpunit": "@php ./vendor/bin/phpunit",
"phpunit-cov": "@php ./vendor/bin/phpunit --coverage-clover tests/logs/clover.xml"
}
}