-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.4 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
{
"name": "typo3/tailor",
"description": "A CLI tool to make TYPO3 extension handling easier",
"license": "MIT",
"authors": [
{
"name": "Benni Mack",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Oliver Bartsch",
"email": "[email protected]",
"role": "Maintainer"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-zip": "*",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/dotenv": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"symfony/mime": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.36 || ^9.6.16",
"typo3/coding-standards": "^0.6.1 || dev-main"
},
"bin": [
"bin/tailor"
],
"autoload": {
"psr-4": {
"TYPO3\\Tailor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\Tailor\\Tests\\": "tests/"
}
},
"scripts": {
"tests:unit": [
"@php vendor/bin/phpunit --testsuite Unit"
],
"cs": [
"@php vendor/bin/php-cs-fixer fix --dry-run --diff --config=vendor/typo3/coding-standards/templates/extension_php-cs-fixer.dist.php src/ tests/"
]
}
}