-
Notifications
You must be signed in to change notification settings - Fork 206
/
composer.json
57 lines (57 loc) · 1.55 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
{
"name": "codeigniter4/translations",
"description": "Translations for CodeIgniter v4 web framework",
"license": "MIT",
"type": "project",
"homepage": "https://codeigniter.com",
"support": {
"forum": "http://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/translations",
"slack": "https://codeigniterchat.slack.com"
},
"require": {
"php": "^8.1",
"ext-intl": "*"
},
"require-dev": {
"ext-tokenizer": "*",
"codeigniter/coding-standard": "^1.7",
"codeigniter4/codeigniter4": "4.x-dev",
"friendsofphp/php-cs-fixer": "^3.53",
"nexusphp/cs-config": "^3.22",
"phpunit/phpunit": "^10.5 || ^11.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/CodeIgniter4",
"canonical": true
}
],
"autoload": {
"psr-4": {
"Translations\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Translations\\Tests\\": "tests/Language/",
"Translations\\Tests\\AutoReview\\": "tests/AutoReview"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "4.x-dev"
}
},
"scripts": {
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"style": "@cs-fix"
}
}