-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 776 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 776 Bytes
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
{
"name": "tibbsa/deferredmediable",
"type": "library",
"description": "A trait used to permit Mediable media entities to be attached to a new entity immediately after its creation (once its identifier is known).",
"keywords": [
"mediable",
"media",
"laravel",
"eloquent"
],
"homepage": "https://github.com/tibbsa/deferredmediabletrait",
"license": "MIT",
"authors": [
{
"name": "Anthony Tibbs",
"email": "anthony@tibbs.ca",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"plank/laravel-mediable": "^5.0|^4.2.1"
},
"autoload": {
"psr-4": {
"TibbsA\\DeferredMediable\\": "src"
}
}
}