forked from terrylinooo/shieldon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (41 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (41 loc) · 1.06 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
{
"name": "shieldon/shieldon",
"description": "Web application firewall for PHP.",
"keywords": ["firewall", "web-application-firewall", "anti-scraping", "xss-filter", "xss-protection", "web-security", "www-authenticate"],
"homepage": "https://github.com/terrylinooo/shieldon",
"license": "MIT",
"authors": [
{
"name": "Terry Lin",
"email": "contact@terryl.in",
"homepage": "https://terryl.in",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0",
"shieldon/messenger": "^1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"shieldon/messenger": "^1"
},
"autoload": {
"psr-4": {
"Shieldon\\": "src/Shieldon"
}
},
"autoload-dev": {
"psr-4": {
"Shieldon\\Tests\\": "tests"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"test": "php vendor/phpunit/phpunit/phpunit"
}
}