-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.09 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "atk4/i18n",
"description": "Symfony Translation component Interface for Atk4",
"license": "MIT",
"type": "library",
"keywords": [
"translation",
"internationalization",
"i18n",
"atk4",
"agile ui"
],
"authors": [
{
"name": "Alain Belair",
"email": "belair.alain@gmail.com"
}
],
"homepage": "https://github.com/atk4/i18n",
"require": {
"php": ">=7.4 <8.6",
"symfony/config": "^4.4 || ^5.1 || ^6.0 || ^7.0 || ^8.0",
"symfony/translation": "^4.4 || ^5.1 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"friendsofphp/php-cs-fixer": "^3.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Atk4\\I18n\\": "src/"
},
"files": [
"src/Resource/functions.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
}
}