-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.09 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "unisharp/laravel-uploadable",
"description": "A simple package to attach files to a eloquent model.",
"keywords": ["upload", "file", "laravel"],
"license": "MIT",
"authors": [
{
"name": "UniSharp Ltd.",
"email": "unisharp-service@unisharp.com"
}
],
"require": {
"illuminate/database": "^5.5",
"illuminate/container": "^5.5",
"illuminate/events": "^5.5",
"illuminate/support": "^5.5",
"illuminate/filesystem": "^5.5",
"illuminate/routing": "^5.5",
"intervention/image": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "3.*",
"mockery/mockery": "~1.0"
},
"autoload": {
"psr-4": {
"UniSharp\\Uploadable\\": "src",
"Tests\\": "tests"
},
"classmap": [
"database"
]
},
"extra": {
"laravel": {
"providers": [
"UniSharp\\Uploadable\\Providers\\UploadableServiceProvider"
]
}
}
}