-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
106 lines (106 loc) · 1.98 KB
/
composer.json
File metadata and controls
106 lines (106 loc) · 1.98 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "typo3/crowdin-bridge",
"description": "Bridge for Crowdin->TYPO3",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Georg Ringer",
"email": "[email protected]"
}
],
"config": {
"bin-dir": "bin",
"platform": {
"php": "8.5"
},
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"require": {
"php": "^8.5",
"ext-zip": "*",
"crowdin/crowdin-api-client": "^1.22",
"friendsoftypo3/crowdin-base": "^0.2.1",
"lcobucci/clock": "^3.5",
"symfony/console": "*",
"symfony/dependency-injection": "*",
"symfony/dotenv": "*",
"symfony/filesystem": "*",
"symfony/finder": "*",
"symfony/flex": "^2.10",
"symfony/framework-bundle": "*",
"symfony/monolog-bundle": "^4.0",
"symfony/runtime": "*",
"symfony/yaml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^13.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/FriendsOfTYPO3/crowdin-base"
}
],
"replace": {
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-php84": "*",
"symfony/polyfill-php85": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"all": [
"@csfix",
"@stan",
"@tests"
],
"cs": [
"./bin/php-cs-fixer fix -v --dry-run --config .build/php-cs-fixer.php"
],
"csfix": [
"./bin/php-cs-fixer fix --config .build/php-cs-fixer.php"
],
"stan": [
"./bin/phpstan"
],
"tests": [
"./bin/phpunit"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "8.0.*"
}
}
}