-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 3.18 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 3.18 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
{
"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 || ^3.0",
"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 || ^7.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": {
"ergebnis/composer-normalize": "^2.47.0",
"friendsofphp/php-cs-fixer": "^3.0",
"jangregor/phpstan-prophecy": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.1.14",
"phpstan/phpstan-phpunit": "^2.0.6",
"phpstan/phpstan-webmozart-assert": "^2.0.0",
"phpunit/phpunit": "^9.0",
"rector/rector": "^2.0.15",
"slevomat/coding-standard": "^8.12",
"squizlabs/php_codesniffer": "^3.6",
"timeweb/phpstan-enum": "^4.0.0"
},
"autoload": {
"psr-4": {
"TYPO3\\Surf\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"TYPO3\\Surf\\Tests\\": "tests"
}
},
"bin": [
"bin/surf"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"scripts": {
"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",
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"ci:php:stan": "phpstan analyse",
"fix:composer:normalize": "@composer normalize --no-check-lock",
"fix:php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff",
"fix:rector": "@php rector process --ansi",
"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",
"local:contribute": [
"@fix:rector",
"@fix:style",
"@ci:php:stan",
"@phpstan:baseline"
],
"phpstan:baseline": "@php vendor/bin/phpstan analyse --generate-baseline --memory-limit=-1 --ansi --allow-empty-baseline",
"test": "vendor/bin/phpunit"
}
}