-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 990 Bytes
/
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
{
"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"
},
"autoload": {
"psr-4": {
"Lib\\":"application/libraries/",
"Model\\":"application/models/",
"Service\\":"application/services/",
"Exception\\":"application/exceptions/"
}
},
"require": {
"php": ">=7.1",
"robmorgan/phinx": "^0.12.6",
"overtrue/wechat": "~4.0",
"lcobucci/jwt": "~3.3.3",
"guzzlehttp/guzzle": "^6.3",
"predis/predis": "^1.1",
"aliyuncs/oss-sdk-php": "^2.4",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-gd": "*",
"ext-exif": "*"
},
"suggest": {
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
}
}