forked from VentureCraft/revisionable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
30 lines (30 loc) · 875 Bytes
/
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
{
"name": "maclof/revisionable",
"license": "MIT",
"description": "Revisionable is a laravel package that allows you to keep a revision history for your models without thinking, built on top of Ardent",
"keywords": ["model", "laravel", "ardent", "revision", "history"],
"homepage": "http://github.com/maclof/revisionable",
"authors": [
{
"name": "Chris Duell",
"email": "me@chrisduell.com"
},
{
"name": "Marc Lough",
"email": "maclof@gmail.com"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": ">=4.0.9,<5.0"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Maclof\\Revisionable": "src/"
}
},
"minimum-stability": "dev"
}