Skip to content

Commit 0533f5f

Browse files
laravel-shiftduellsy
authored andcommitted
Bump dependencies for Laravel 10
1 parent e40e824 commit 0533f5f

File tree

1 file changed

+52
-45
lines changed

1 file changed

+52
-45
lines changed

composer.json

Lines changed: 52 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,52 @@
1-
{
2-
"name": "venturecraft/revisionable",
3-
"license": "MIT",
4-
"description": "Keep a revision history for your models without thinking, created as a package for use with Laravel",
5-
"keywords": ["model", "laravel", "ardent", "revision", "audit", "history"],
6-
"homepage": "http://github.com/venturecraft/revisionable",
7-
"authors": [
8-
{
9-
"name": "Chris Duell",
10-
"email": "me@chrisduell.com"
11-
}
12-
],
13-
"support": {
14-
"issues": "https://github.com/VentureCraft/revisionable/issues",
15-
"source": "https://github.com/VentureCraft/revisionable"
16-
},
17-
"require": {
18-
"php": ">=5.4.0",
19-
"illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0",
20-
"laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0"
21-
},
22-
"autoload": {
23-
"classmap": [
24-
"src/migrations"
25-
],
26-
"psr-0": {
27-
"Venturecraft\\Revisionable": "src/"
28-
}
29-
},
30-
"autoload-dev": {
31-
"psr-4": {
32-
"Venturecraft\\Revisionable\\Tests\\": "tests/"
33-
}
34-
},
35-
"require-dev": {
36-
"orchestra/testbench": "~3.0"
37-
},
38-
"extra": {
39-
"laravel": {
40-
"providers": [
41-
"Venturecraft\\Revisionable\\RevisionableServiceProvider"
42-
]
43-
}
44-
}
45-
}
1+
{
2+
"name": "venturecraft/revisionable",
3+
"license": "MIT",
4+
"description": "Keep a revision history for your models without thinking, created as a package for use with Laravel",
5+
"keywords": [
6+
"model",
7+
"laravel",
8+
"ardent",
9+
"revision",
10+
"audit",
11+
"history"
12+
],
13+
"homepage": "http://github.com/venturecraft/revisionable",
14+
"authors": [
15+
{
16+
"name": "Chris Duell",
17+
"email": "me@chrisduell.com"
18+
}
19+
],
20+
"support": {
21+
"issues": "https://github.com/VentureCraft/revisionable/issues",
22+
"source": "https://github.com/VentureCraft/revisionable"
23+
},
24+
"require": {
25+
"php": ">=5.4.0",
26+
"illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
27+
"laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0"
28+
},
29+
"autoload": {
30+
"classmap": [
31+
"src/migrations"
32+
],
33+
"psr-0": {
34+
"Venturecraft\\Revisionable": "src/"
35+
}
36+
},
37+
"autoload-dev": {
38+
"psr-4": {
39+
"Venturecraft\\Revisionable\\Tests\\": "tests/"
40+
}
41+
},
42+
"require-dev": {
43+
"orchestra/testbench": "~3.0|^8.0"
44+
},
45+
"extra": {
46+
"laravel": {
47+
"providers": [
48+
"Venturecraft\\Revisionable\\RevisionableServiceProvider"
49+
]
50+
}
51+
}
52+
}

0 commit comments

Comments
 (0)