-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.33 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "unisharp/uni-cms",
"description": "CMS Components",
"license": "MIT",
"authors": [
{
"name": "Sasaya",
"email": "storyn26383@gmail.com"
},
{
"name": "UniSharp",
"email": "opensource@unisharp.com",
"homepage": "https://www.unisharp.com"
}
],
"require": {
"illuminate/database": "^5.5",
"illuminate/support": "^5.5",
"illuminate/container": "^5.5",
"kalnoy/nestedset": "^4.3",
"illuminate/translation": "^5.5",
"illuminate/events": "^5.5"
},
"autoload": {
"psr-4": {
"UniSharp\\UniCMS\\": "src"
},
"classmap": [
"database"
]
},
"require-dev": {
"php": "^7.0",
"phpunit/phpunit": "^6.4",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "^3.1",
"phpunit/php-code-coverage": "^5.2",
"satooshi/php-coveralls": "^1.0",
"doctrine/instantiator": "1.0.5",
"codedungeon/phpunit-result-printer": "^0.4.4"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"UniSharp\\UniCMS\\UniCMSServiceProvider"
]
}
}
}