-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.39 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.39 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
{
"name": "senseexception/intl-format-bundle",
"description": "A Symfony bundle of the IntlFormat wrapper library for PHP intl messages",
"type": "symfony-bundle",
"keywords": ["intl", "i18n", "formatter", "icu", "i18n", "internationalization", "Symfony", "Bundle", "messages", "sprintf"],
"license": "MIT",
"authors": [
{
"name": "Claudio Zizza",
"email": "claudio@budgegeria.de"
}
],
"require": {
"ext-intl": "*",
"php": "^8.0",
"senseexception/intl-format": "^2.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
"symfony/http-foundation": "^4.4 || >= 5.0.7 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"infection/infection": "^0.26.2",
"vimeo/psalm": "^4.7",
"psalm/plugin-phpunit": "^0.15",
"psalm/plugin-symfony": "^2.3"
},
"autoload": {
"psr-4": {
"Budgegeria\\Bundle\\IntlFormatBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Budgegeria\\Bundle\\IntlFormatBundle\\Tests\\": "tests"
}
},
"prefer-stable": true
}