-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
49 lines (49 loc) · 1.19 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
{
"name": "phith0n/chip",
"description": "a simple tool to detect potential security threat in php code",
"version": "1.3.0",
"license": "MIT",
"authors": [
{
"name": "phith0n",
"email": "root@leavesongs.com"
}
],
"type": "library",
"homepage": "https://github.com/phith0n/chip",
"keywords": [
"chip",
"php",
"webshell"
],
"require": {
"php": ">=7.1.4",
"ext-json": "*",
"ext-dom": "*",
"ext-libxml": "*",
"nikic/php-parser": "^4.1",
"myclabs/php-enum": "^1.6",
"symfony/finder": "^4.2",
"php-di/php-di": "^6.0",
"symfony/console": "^4.2",
"twig/twig": "^2.0"
},
"autoload": {
"psr-4": {"Chip\\": "src/Chip"},
"files": [
"src/Chip/Schema/FunctionWithCallable.php",
"src/Chip/Schema/DangerFunction.php"
]
},
"autoload-dev": {
"psr-4": {
"Chip\\Tests\\": "tests/"
}
},
"require-dev": {
"ext-simplexml": "*",
"phpunit/phpunit": "^7.0.0",
"mockery/mockery": "^1.2",
"mikey179/vfsstream": "^1.6"
}
}