-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
75 lines (75 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "typo3/surf",
"description": "TYPO3 Surf is a deployment tool, suited for a wide variety of applications",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/TYPO3/Surf/issues",
"source": "https://github.com/TYPO3/Surf",
"docs": "https://docs.typo3.org/other/typo3/surf/main/en-us/"
},
"require": {
"php": "^7.4 || ^8.0",
"consolidation/self-update": "^2.1",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"monolog/monolog": "^2.9.1",
"myclabs/php-enum": "^1.8",
"neos/utility-files": "^7.3.10 || ^8.3.9",
"symfony/config": "^5.0 || ^6.0 || ^7.0",
"symfony/console": "^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/finder": "^5.1 || ^6.0 || ^7.0",
"symfony/options-resolver": "^5.0 || ^6.0 || ^7.0",
"symfony/process": "^5.0 || ^6.0 || ^7.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^9.0",
"rector/rector": "^1.0.3",
"slevomat/coding-standard": "^8.12",
"squizlabs/php_codesniffer": "^3.6",
"timeweb/phpstan-enum": "^3.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"TYPO3\\Surf\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"TYPO3\\Surf\\Tests\\": "tests"
}
},
"bin": [
"bin/surf"
],
"scripts": {
"phpstan": "phpstan analyse",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff",
"check-style": "vendor/bin/phpcs -p --standard=ruleset.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "vendor/bin/phpcbf -p --standard=ruleset.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"test": "vendor/bin/phpunit"
}
}