forked from codeigniter4/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.31 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
{
"name": "codeigniter4/translations",
"type": "project",
"description": "Translations for CodeIgniter v4 web framework",
"homepage": "https://codeigniter.com",
"license": "MIT",
"require": {
"php": "^7.2 || ^8.0",
"ext-intl": "*"
},
"require-dev": {
"ext-tokenizer": "*",
"codeigniter/coding-standard": "^1.1",
"codeigniter4/codeigniter4": "4.x-dev",
"friendsofphp/php-cs-fixer": "^3.1",
"nexusphp/cs-config": "^3.3",
"phpunit/phpunit": "^9.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "4.x-dev"
}
},
"autoload": {
"psr-4": {
"Translations\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Translations\\Tests\\": "tests/Language/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/CodeIgniter4",
"canonical": true
}
],
"support": {
"forum": "http://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/translations",
"slack": "https://codeigniterchat.slack.com"
}
}