-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
executable file
·61 lines (61 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "phpems/phpems",
"description": "PHP Exam Management System",
"keywords": [
"phpems",
"exam"
],
"homepage": "http://www.phpems.net",
"license": "MIT",
"type": "project",
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
},
"require": {
"php": ">=7.0",
"illuminate/database": ">=5.0",
"davedevelopment/phpmig": "^1.6",
"thamaraiselvam/mysql-import": "^1.1",
"predis/predis": "^1.1",
"aliyuncs/oss-sdk-php": "^2.4",
"ext-json": "*"
},
"require-dev": {
"symfony/var-dumper": ">=3.0"
},
"suggest": {
"overtrue/easy-sms": "方便发送验证码短信的组件",
"overtrue/wechat": "方便开发服务号相关功能的组件"
},
"autoload": {
"classmap": [],
"psr-4": {
"Model\\": "model/"
},
"files": [
"lib/database.inc.php"
]
},
"support": {
"email": "i@oiuv.cn",
"source": "https://github.com/phpems/phpems"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('lib/config.inc.php') || copy('lib/config.inc.example.php', 'lib/config.inc.php');\""
],
"post-create-project-cmd": [
"@php -r \"echo '项目安装完成,请导入数据库 phpems.sql 并配置 lib/config.inc.php 文件。'.PHP_EOL;\""
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}