-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.47 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
50
51
52
53
54
55
56
57
{
"name": "michielroos/typo3migrate",
"description": "TYPO3 Migration Tools",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Michiel Roos",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"symfony/console": "^2.7 || ^2.8 || ^3.4",
"symfony/filesystem": "2.7 || ^2.8 || ^3.4",
"symfony/finder": "2.7 || ^2.8 || ^3.4"
},
"autoload": {
"psr-4": {
"MichielRoos\\TYPO3Migrate\\": "src/TYPO3Migrate"
}
},
"autoload-dev": {
"psr-4": {
"MichielRoos\\TYPO3Migrate\\Tests\\": "src/TYPO3Migrate/Tests"
}
},
"bin": ["bin/typo3migrate"],
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"preferred-install": "dist"
},
"require-dev": {
"phpunit/phpunit": "^5",
"roave/security-advisories": "dev-master"
},
"scripts": {
"ci:php:lint": "find src/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:tests:unit": "phpunit ./src/Tests/Unit/",
"ci:tests:integration": "phpunit ./src/Tests/Integration/",
"ci:tests": [
"@ci:tests:unit",
"@ci:tests:integration"
],
"ci:static": [
"@ci:php:lint"
],
"ci:dynamic": [
"@ci:tests"
],
"ci": [
"@ci:static",
"@ci:dynamic"
]
}
}