forked from GrahamCampbell/Security-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1 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
{
"name": "graham-campbell/security-core",
"description": "Security Core Is A Wrapper Of voku/anti-xss For General Use",
"keywords": ["laravel", "framework", "security", "xss", "anti-xss", "Security", "Security Core", "Security-Core", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]",
"homepage": "https://github.com/GrahamCampbell"
}
],
"require": {
"php": "^8.0.2",
"voku/anti-xss": "~4.1.41",
"voku/portable-utf8": "^6.0.12"
},
"require-dev": {
"graham-campbell/analyzer": "^4.0",
"phpunit/phpunit": "^9.6.3 || ^10.0.12"
},
"autoload": {
"psr-4": {
"GrahamCampbell\\SecurityCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\SecurityCore\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
}
}