forked from sonata-project/SonataIntlBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.22 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
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
{
"name": "sonata-project/intl-bundle",
"description": "Symfony SonataIntlBundle",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"sonata",
"intl",
"date",
"time",
"number"
],
"authors": [
{
"name": "Thomas Rabaix",
"email": "thomas.rabaix@sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataIntlBundle/contributors"
}
],
"homepage": "https://docs.sonata-project.org/projects/SonataIntlBundle",
"require": {
"php": "^7.3 || ^8.0",
"symfony/config": "^4.4 || ^5.3 || ^6.0",
"symfony/dependency-injection": "^4.4.8 || ^5.3 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.3 || ^6.0",
"symfony/http-kernel": "^4.4.13 || ^5.3 || ^6.0",
"symfony/intl": "^4.4 || ^5.3 || ^6.0",
"symfony/templating": "^4.4 || ^5.3 || ^6.0",
"twig/twig": "^2.9 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16",
"psalm/plugin-symfony": "^3.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/security-core": "^4.4.23 || ^5.3 || ^6.0",
"vimeo/psalm": "^4.7.2"
},
"conflict": {
"sonata-project/user-bundle": "<3.6"
},
"autoload": {
"psr-4": {
"Sonata\\IntlBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\IntlBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}