-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e40e824
commit 0533f5f
Showing
1 changed file
with
52 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,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", | ||
"laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0" | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
"src/migrations" | ||
], | ||
"psr-0": { | ||
"Venturecraft\\Revisionable": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Venturecraft\\Revisionable\\Tests\\": "tests/" | ||
} | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "~3.0" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Venturecraft\\Revisionable\\RevisionableServiceProvider" | ||
] | ||
} | ||
} | ||
} | ||
{ | ||
"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", | ||
"laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.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" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Venturecraft\\Revisionable\\RevisionableServiceProvider" | ||
] | ||
} | ||
} | ||
} |