forked from yllumi/heroicadmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.36 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"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",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"abordage/html-min": "^0.2.2",
"codeigniter4/framework": "4.6.x",
"codeigniter4/settings": "^2.2",
"endroid/qr-code": "^5.0",
"firebase/php-jwt": "^7.0",
"google/recaptcha": "^1.3",
"guzzlehttp/guzzle": "^7.0",
"laminas/laminas-escaper": "^2.9",
"matthiasmullie/minify": "^1.3",
"minishlink/web-push": "^9.0",
"pda/pheanstalk": "^5.1",
"phpmailer/phpmailer": "^6.10",
"spatie/image-optimizer": "^1.8",
"symfony/yaml": "^6.4",
"yllumi/ci4-pages": "^1.0",
"yllumi/heroic": "^1.0"
},
"require-dev": {
"codeigniter/coding-standard": "^1.5",
"codeigniter4/devkit": "^0.1.0",
"deployer/deployer": "^7.5",
"ergebnis/composer-normalize": "^2.47",
"fakerphp/faker": "^1.9",
"friendsofphp/php-cs-fixer": "~3.41.0",
"icanhazstring/composer-unused": "^0.9.3",
"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"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Config\\": "app/Config/",
"Referral\\": "modules/Referral/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.3.30"
}
},
"scripts": {
"test": "phpunit"
}
}