forked from Terrorboy/ci4lang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.53 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "terrorboy/ci4lang",
"description": "This is my package ci4lang",
"keywords": [
"Terrorboy",
"ci4lang",
"Codeigniter4",
"translation"
],
"homepage": "https://github.com/terrorboy/ci4lang",
"license": "MIT",
"authors": [
{
"name": "Terrorboy",
"email": "z9n@kakao.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-intl": "*",
"jfcherng/php-diff": "^6.11"
},
"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",
"spatie/ray": "^1.34"
},
"autoload": {
"psr-4": {
"ci4lang\\Ci4lang\\": "src"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "4.x-dev"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/CodeIgniter4",
"canonical": true
}
],
"minimum-stability": "dev",
"prefer-stable": true
}