-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
55 lines (55 loc) · 1.41 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
{
"name": "helmich/typo3-typoscript-lint",
"description": "Static code analysis for the TypoScript configuration language.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/martin-helmich",
"authors": [
{
"name": "Martin Helmich",
"email": "m.helmich@mittwald.de",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/martin-helmich/typo3-typoscript-lint/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"symfony/finder": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"helmich/typo3-typoscript-parser": "^2.3",
"ext-json": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5.11 || ^11.5.0",
"mikey179/vfsstream": "^1.6.11",
"phpstan/phpstan": "^2.0.3",
"phpspec/prophecy-phpunit": "^2.0.2"
},
"scripts": {
"package": "bash .build/package.sh $@"
},
"bin": [
"typoscript-lint"
],
"autoload": {
"psr-4": {
"Helmich\\TypoScriptLint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Helmich\\TypoScriptLint\\Tests\\Functional\\": "tests/functional",
"Helmich\\TypoScriptLint\\Tests\\Unit\\": "tests/unit"
}
}
}