-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.34 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.34 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
{
"name": "friendsoftypo3/crowdin-base",
"description": "Base functionality for Crowdin",
"license": "proprietary",
"authors": [
{
"name": "TYPO3 Localization Team"
}
],
"require": {
"php": "^8.5",
"crowdin/crowdin-api-client": "^1.20",
"guzzlehttp/guzzle": "^7.10",
"php-di/php-di": "^7.1",
"symfony/console": "^8.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"ergebnis/composer-normalize": "~2.50.0",
"friendsofphp/php-cs-fixer": "~3.94.0",
"phpstan/phpstan": "2.1.39",
"phpunit/phpunit": "^13.0",
"rector/rector": "2.3.6"
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\CrowdinBase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FriendsOfTYPO3\\CrowdinBase\\Tests\\": "tests/"
}
},
"bin": [
"bin/crowdinSetup"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.5"
},
"sort-packages": true
},
"scripts": {
"all": [
"@cs",
"@stan",
"@rector-check",
"@tests"
],
"cs": [
"./vendor/bin/php-cs-fixer fix -v --dry-run --config .php-cs-fixer.php"
],
"csfix": [
"./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php"
],
"rector": [
"./vendor/bin/rector"
],
"rector-check": [
"./vendor/bin/rector --dry-run"
],
"stan": [
"./vendor/bin/phpstan"
],
"tests": [
"./vendor/bin/phpunit"
]
}
}