-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
73 lines (73 loc) · 2.17 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
{
"name": "sonata-project/intl-bundle",
"description": "Symfony SonataIntlBundle",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"sonata",
"intl",
"date",
"time",
"number"
],
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataIntlBundle/contributors"
}
],
"homepage": "https://docs.sonata-project.org/projects/SonataIntlBundle",
"require": {
"php": "^8.1",
"symfony/config": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/intl": "^6.4 || ^7.1",
"symfony/translation-contracts": "^2.5 || ^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"matthiasnoback/symfony-config-test": "^4.2 || ^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.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.18",
"psalm/plugin-symfony": "^5.0",
"rector/rector": "^1.1",
"symfony/phpunit-bridge": "^6.4 || ^7.1",
"symfony/security-core": "^6.4 || ^7.1",
"vimeo/psalm": "^5.0"
},
"conflict": {
"sonata-project/user-bundle": "<3.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"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
}
}