-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 2.77 KB
/
composer.json
File metadata and controls
95 lines (95 loc) · 2.77 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
{
"name": "tmi/translation-bundle",
"description": "A Symfony bundle that manages translations with Doctrine.",
"type": "symfony-bundle",
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^7.3 || ^8.0"
}
},
"keywords": [
"symfony",
"doctrine",
"translation"
],
"homepage": "https://github.com/CreativeNative/translation-bundle",
"license": "MIT",
"authors": [
{
"name": "Oskar Golde",
"email": "info@terra-mia.immo"
}
],
"require": {
"php": ">=8.4",
"doctrine/doctrine-bundle": "^2.18 || ^3.0",
"doctrine/orm": "^3.5.7",
"symfony/framework-bundle": "^7.3 || ^8.0",
"symfony/security-bundle": "^7.3 || ^8.0",
"symfony/yaml": "^7.3 || ^8.0",
"symfony/property-access": "^7.3 || ^8.0",
"twig/twig": "^3.22.0",
"symfony/translation-contracts": "^3.6.1",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/uid": "^7.3 || ^8.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"ext-xdebug": "*",
"friendsofphp/php-cs-fixer": "@stable",
"php-parallel-lint/php-parallel-lint": "^v1.4.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0.8",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpstan/phpstan-symfony": "^2.0.8",
"phpunit/phpunit": "^12.4.4",
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "^7.3 || ^8.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Tmi\\TranslationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tmi\\TranslationBundle\\Test\\": "tests/",
"Tmi\\TranslationBundle\\Fixtures\\": "tests/Fixtures/"
}
},
"scripts": {
"test": [
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text"
],
"cs-check": [
"vendor/bin/php-cs-fixer fix --dry-run --diff"
],
"cs-fix": [
"vendor/bin/php-cs-fixer fix"
],
"stan": "vendor/bin/phpstan analyse --memory-limit=512M --ansi",
"rector": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/rector process --dry-run"
],
"check": [
"@cs-fix",
"@stan",
"@test"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}