Skip to content

Commit

Permalink
Bump dependencies for Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift authored and duellsy committed Feb 18, 2023
1 parent e40e824 commit 0533f5f
Showing 1 changed file with 52 additions and 45 deletions.
97 changes: 52 additions & 45 deletions composer.json
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"
]
}
}
}

0 comments on commit 0533f5f

Please sign in to comment.