-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.14 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.14 KB
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
{
"name": "rumur/wp-notice",
"description": "The OOP package to work with WordPress notices",
"keywords": ["wordpress", "notice", "notifications"],
"homepage": "https://github.com/rumur/wp-notice",
"license": "MIT",
"authors": [
{
"name": "rumur",
"email": "rumur.dev@gmail.com"
}
],
"autoload" : {
"psr-4" : {
"Rumur\\WordPress\\Notice\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": ">=7.1.0",
"ext-json": "*"
},
"extra": {
"acorn": {
"aliases": {
"Notice": "Rumur\\WordPress\\Notice\\Facades\\Notice"
},
"providers": [
"Rumur\\WordPress\\Notice\\NoticeServiceProvider"
]
},
"laravel": {
"aliases": {
"Notice": "Rumur\\WordPress\\Notice\\Facades\\Notice"
},
"providers": [
"Rumur\\WordPress\\Notice\\NoticeServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit -v",
"sniff": "./vendor/bin/phpcs -v",
"sniff-fix": "./vendor/bin/phpcbf -v"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^8.5"
}
}