Skip to content

Commit

Permalink
Merge pull request #56 from laravel-shift/l9-compatibility
Browse files Browse the repository at this point in the history
Laravel 9.x Compatibility
  • Loading branch information
saqueib authored Feb 8, 2022
2 parents 1cf9610 + 4bcefff commit 17f577a
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
{
"name": "qcod/laravel-imageup",
"description": "Auto Image upload, resize and crop for Laravel eloquent model using Intervention image",
"homepage": "https://github.com/qcod/laravel-imageup",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"image upload",
"image crop",
"image resize",
"intervention image",
"eloquent",
"model"
],
"authors": [
{
"name": "Mohd Saqueib Ansari",
"email": "saquibweb@gmail.com"
"name": "qcod/laravel-imageup",
"description": "Auto Image upload, resize and crop for Laravel eloquent model using Intervention image",
"homepage": "https://github.com/qcod/laravel-imageup",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"image upload",
"image crop",
"image resize",
"intervention image",
"eloquent",
"model"
],
"authors": [
{
"name": "Mohd Saqueib Ansari",
"email": "saquibweb@gmail.com"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"intervention/image": "^2.4"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^7.0",
"phpunit/phpunit": "^8.0|^9.0",
"dms/phpunit-arraysubset-asserts": "^0.2.0|^0.3"
},
"autoload": {
"psr-4": {
"QCod\\ImageUp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QCod\\ImageUp\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"QCod\\ImageUp\\ImageUpServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
"intervention/image": "^2.4"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^8.0|^9.0",
"dms/phpunit-arraysubset-asserts": "^0.2.0"
},
"autoload": {
"psr-4": {
"QCod\\ImageUp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QCod\\ImageUp\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"QCod\\ImageUp\\ImageUpServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}

0 comments on commit 17f577a

Please sign in to comment.