forked from mpociot/versionable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 794 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 794 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
{
"name": "mpociot/versionable",
"license": "MIT",
"description": "Allows to create Laravel 4 / 5 Model versioning and restoring",
"keywords": ["model", "laravel", "ardent", "version", "history"],
"homepage": "http://github.com/mpociot/versionable",
"authors": [
{
"name": "Marcel Pociot",
"email": "m.pociot@gmail.com"
}
],
"support": {
"issues": "https://github.com/mpociot/versionable/issues",
"source": "https://github.com/mpociot/versionable"
},
"require": {
"php": ">=5.3.0",
"illuminate/support": "~4.0|~5.0"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Mpociot\\Versionable": "src/"
}
}
}