-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
34 lines (34 loc) · 991 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": "[email protected]",
"homepage": "http://softonsofa.com/",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.5",
"illuminate/database": ">=6.20.14"
},
"require-dev": {
"illuminate/auth": ">=6.20.14",
"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"
}
}
}