forked from mschwemer/typo3scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.06 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
{
"name": "michielroos/typo3scan",
"description": "TYPO3 scanner",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Michiel Roos",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.8",
"typo3/cms-scanner": "dev-master",
"symfony/process": "^3.4",
"symfony/finder": "^3.4",
"symfony/yaml": "^3.4",
"twig/twig": "^2.5",
"symfony/console": "^3.4",
"symfony/debug": "^3.4",
"symfony/filesystem": "^3.4"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Tuurlijk/scanner"
}
],
"autoload": {
"psr-4": {
"MichielRoos\\TYPO3Scan\\": "src/TYPO3Scan"
}
},
"bin": ["bin/typo3scan"],
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"preferred-install": "dist"
},
"require-dev": {
"phpunit/phpunit": "^7",
"roave/security-advisories": "dev-master"
}
}