This repository was archived by the owner on Jan 21, 2025. It is now read-only.
forked from php-translation/symfony-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (65 loc) · 2.12 KB
/
composer.json
File metadata and controls
66 lines (65 loc) · 2.12 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
{
"name": "php-translation/symfony-bundle",
"type": "symfony-bundle",
"description": "",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^3.4 || ^4.3 || ^5.0",
"symfony/validator": "^3.4 || ^4.3 || ^5.0",
"symfony/translation": "^3.4 || ^4.3 || ^5.0",
"symfony/twig-bundle": "^3.4 || ^4.3 || ^5.0",
"symfony/finder": "^3.4 || ^4.3 || ^5.0",
"symfony/intl": "^3.4 || ^4.3 || ^5.0",
"php-translation/symfony-storage": "^2.1",
"php-translation/extractor": "^2.0",
"nyholm/nsa": "^1.1",
"twig/twig": "^2.11 || ^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4 || ^5.0",
"php-translation/translator": "^1.0",
"php-http/curl-client": "^1.7",
"php-http/message": "^1.6",
"php-http/message-factory": "^1.0.2",
"symfony/console": "^3.4 || ^4.3 || ^5.0",
"symfony/twig-bridge": "^3.4 || ^4.3 || ^5.0",
"symfony/asset": "^3.4 || ^4.3 || ^5.0",
"symfony/dependency-injection": "^3.4 || ^4.3 || ^5.0",
"symfony/web-profiler-bundle": "^3.4 || ^4.3 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"matthiasnoback/symfony-config-test": "^4.1",
"nyholm/psr7": "^1.1",
"nyholm/symfony-bundle-test": "^1.6.1",
"phpunit/phpunit": "^8.4"
},
"conflict": {
"symfony/config": "<3.4.31"
},
"suggest": {
"php-http/httplug-bundle": "To easier configure your httplug clients."
},
"autoload": {
"psr-4": { "Translation\\Bundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml Tests/Unit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.11-dev"
}
}
}