-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.58 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
{
"name": "senseexception/intl-bundle",
"description": "Improved and simple Intl implementations for Symfony",
"type": "symfony-bundle",
"keywords": ["intl", "i18n", "formatter", "sort", "Collator", "icu", "i18n", "internationalization", "Symfony", "Bundle", "messages", "sprintf"],
"license": "MIT",
"authors": [
{
"name": "Claudio Zizza",
"email": "[email protected]"
}
],
"require": {
"ext-intl": "*",
"php": "^8.2",
"senseexception/intl-format": "^2.3",
"senseexception/intl-sort": "^2.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.0",
"infection/infection": "^0.27",
"doctrine/coding-standard": "^12.0",
"squizlabs/php_codesniffer": "^3.9",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0"
},
"autoload": {
"psr-4": {
"Budgegeria\\Bundle\\IntlBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Budgegeria\\Bundle\\IntlBundle\\Tests\\": "tests"
}
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}