forked from jarektkaczyk/revisionable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 981 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
31
32
33
34
{
"name": "sofa/revisionable",
"description": "Nice and easy way to handle revisions of your db.",
"license": "MIT",
"support": {
"issues": "https://github.com/jarektkaczyk/revisionable/issues",
"source": "https://github.com/jarektkaczyk/revisionable"
},
"keywords": ["laravel", "eloquent", "revisionable", "revision", "history"],
"authors": [
{
"name": "Jarek Tkaczyk",
"email": "jarek@softonsofa.com",
"homepage": "http://softonsofa.com/",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/database": "^5.5"
},
"require-dev": {
"illuminate/auth": "^5.5",
"cartalyst/sentry": "~2.0",
"cartalyst/sentinel": "~2.0",
"tymon/jwt-auth": "^0.5.3",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"psr-4": {
"Sofa\\Revisionable\\": "src"
}
}
}