-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·40 lines (40 loc) · 1.01 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
{
"description": "The CodeIgniter framework",
"name": "codeigniter/framework",
"type": "project",
"homepage": "https://codeigniter.com",
"license": "MIT",
"support": {
"forum": "http://forum.codeigniter.com/",
"wiki": "https://github.com/bcit-ci/CodeIgniter/wiki",
"slack": "https://codeigniterchat.slack.com",
"source": "https://github.com/bcit-ci/CodeIgniter"
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=5.3.7",
"nesbot/carbon": "^1.22",
"swiftmailer/swiftmailer": "^6.2",
"symfony/dotenv": "^4.2",
"illuminate/database": "^5.8",
"illuminate/events": "^5.8",
"illuminate/pagination": "^5.8",
"symfony/var-dumper": "^4.2",
"filp/whoops": "^2.3",
"illuminate/filesystem": "^5.8",
"illuminate/translation": "^5.8",
"illuminate/validation": "^5.8"
},
"suggest": {
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
},
"autoload": {
"psr-4": {
"App\\": "application",
"Lib\\": "application/libraries/",
"Models\\": "application/models/"
}
}
}