-
Notifications
You must be signed in to change notification settings - Fork 348
/
composer.json
52 lines (52 loc) · 1.36 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
{
"name": "venturecraft/revisionable",
"license": "MIT",
"description": "Keep a revision history for your models without thinking, created as a package for use with Laravel",
"keywords": [
"model",
"laravel",
"ardent",
"revision",
"audit",
"history"
],
"homepage": "http://github.com/venturecraft/revisionable",
"authors": [
{
"name": "Chris Duell",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/VentureCraft/revisionable/issues",
"source": "https://github.com/VentureCraft/revisionable"
},
"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": {
"Venturecraft\\Revisionable": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Venturecraft\\Revisionable\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "~3.0|^8.0|^9.0"
},
"extra": {
"laravel": {
"providers": [
"Venturecraft\\Revisionable\\RevisionableServiceProvider"
]
}
}
}