-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
45 lines (45 loc) · 1.65 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
{
"name": "incenteev/translation-checker-bundle",
"type": "symfony-bundle",
"description": "CLI tools to check translations in a Symfony project",
"keywords": ["translation check", "translation", "testing"],
"homepage": "https://github.com/Incenteev/translation-checker-bundle",
"license": "MIT",
"authors": [
{
"name": "Christophe Coevoet",
"email": "stof@notk.org"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/framework-bundle": "^4.4.29 || ^5.3.4 || ^6.0.0 || ^7.0.0",
"symfony/console": "^4.4.29 || ^5.3.4 || ^6.0.0 || ^7.0.0",
"symfony/config": "^4.4.29 || ^5.3.4 || ^6.0.0 || ^7.0.0",
"symfony/dependency-injection": "^4.4.29 || ^5.3.4 || ^6.0.0 || ^7.0.0",
"symfony/finder": "^4.4.29 || ^5.3.4 || ^6.0.0 || ^7.0.0",
"symfony/http-kernel": "^4.4.29 || ^5.3.4 || ^6.0.0 || ^7.0.0",
"symfony/translation": "^4.4.32 || ^5.3.4 || ^6.0.0 || ^7.0.0",
"symfony/yaml": "^4.4.29 || ^5.3.4 || ^6.0.0 || ^7.0.0"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.6.15",
"symfony/phpunit-bridge": "^6.4.0 || ^7.0.0"
},
"autoload": {
"psr-4": { "Incenteev\\TranslationCheckerBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Incenteev\\TranslationCheckerBundle\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}