-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.65 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "codeigniter4/appstarter",
"description": "CodeIgniter4 starter app",
"license": "MIT",
"type": "project",
"homepage": "https://codeigniter.com",
"support": {
"forum": "https://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/CodeIgniter4",
"slack": "https://codeigniterchat.slack.com"
},
"require": {
"php": "^8.1",
"codeigniter4/framework": "^4.0",
"codeigniter4/shield": "^1.1",
"yllumi/ci4-pages": "^1.0",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"codeigniter4/settings": "^2.2",
"firebase/php-jwt": "^6.10",
"google/recaptcha": "^1.3",
"laminas/laminas-escaper": "^2.9",
"symfony/yaml": "^6.4"
},
"require-dev": {
"codeigniter/coding-standard": "^1.5",
"fakerphp/faker": "^1.24",
"friendsofphp/php-cs-fixer": "~3.41.0",
"kint-php/kint": "^5.0.4",
"mikey179/vfsstream": "^1.6",
"nexusphp/cs-config": "^3.6",
"phpunit/phpunit": "^9.1",
"predis/predis": "^1.1 || ^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Config\\": "app/Config/",
"Yllumi\\Heroic\\": "packages/heroic/src/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "phpunit"
}
}