forked from mpociot/versionable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.46 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "rodrigopedra/laravel-versionable",
"license": "MIT",
"description": "Allows to create Laravel 5.6 and 6.0 Model versioning and restoring",
"keywords": [
"model",
"laravel",
"version",
"history",
"restore"
],
"homepage": "http://github.com/rodrigopedra/laravel-versionable",
"authors": [
{
"name": "Rodrigo Pedra Brum",
"email": "rodrigo.pedra@gmail.com"
},
{
"name": "Marcel Pociot",
"email": "m.pociot@gmail.com"
}
],
"support": {
"issues": "https://github.com/rodrigopedra/laravel-versionable/issues",
"source": "https://github.com/rodrigopedra/laravel-versionable"
},
"require": {
"php": "^7.2.5|^8.0",
"illuminate/support": "^6.20.12|^7.30.4|^8.22.1|^9.0",
"illuminate/database": "^6.20.12|^7.30.4|^8.22.1|^9.0",
"illuminate/events": "^6.20.12|^7.30.4|^8.22.1|^9.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.3.3."
},
"autoload": {
"classmap": [
"tests/VersionableTestCase.php"
],
"psr-4": {
"RodrigoPedra\\": "src/"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"RodrigoPedra\\LaravelVersionable\\LaravelVersionableServiceProvider"
]
}
}
}