forked from VentureCraft/revisionable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.19 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
{
"name": "ubiquilife/revisionable",
"license": "Private",
"description": "Keep a revision history for your models without thinking, created as a package for use with Laravel",
"keywords": [
"model",
"laravel",
"revision",
"history"
],
"homepage": "http://github.com/ubiquilife/revisionable",
"authors": [
{
"name": "Ubiquilife",
"homepage": "https://ubiqui.life",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Ubiquilife\\Revisionable": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ubiquilife\\Revisionable\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "~3.0|^8.0"
},
"extra": {
"laravel": {
"providers": [
"Ubiquilife\\Revisionable\\RevisionableServiceProvider"
]
}
}
}