-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
46 lines (46 loc) · 1.27 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
{
"name": "cmsgarden/cmsscanner",
"description": "The CMS-Garden CMS scanning CLI tool.",
"type": "library",
"keywords": [
"cmsgarden",
"cms"
],
"homepage": "http://www.cms-garden.org/",
"license": "MIT",
"authors": [
{
"name": "David Jardin",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"symfony/finder": "2.5.* || 2.6.* || 2.8.*",
"symfony/console": "2.5.* || 2.6.* || 2.8.*",
"php": "^5.4 || ^7.0 || ^8.0",
"herrera-io/phar-update": "^2.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Cmsgarden\\Cmsscanner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cmsgarden\\Cmsscanner\\Tests\\Adapters\\": "tests/suites/adapters",
"Cmsgarden\\Cmsscanner\\Tests\\Command\\": "tests/suites/core",
"Cmsgarden\\Cmsscanner\\Tests\\Detector\\": "tests/suites/core/Detector",
"Cmsgarden\\Cmsscanner\\Tests\\Stubs\\": "tests/stubs"
}
},
"scripts": {
"php:test": "phpunit",
"php:cs": "phpcs"
}
}