Skip to content

Commit

Permalink
Merge pull request #46 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
saqueib authored Mar 6, 2023
2 parents e4da6f5 + f1fc086 commit ca7a220
Showing 1 changed file with 55 additions and 55 deletions.
110 changes: 55 additions & 55 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
{
"name": "qcod/laravel-app-settings",
"description": "A package with UI to store and manage all the settings for your application",
"homepage": "https://github.com/qcod/laravel-app-settings",
"type": "library",
"license": "MIT",
"keywords": [
"qcod",
"laravel",
"database settings",
"db settings",
"app settings",
"setting ui",
"bootstrap",
"eloquent"
],
"authors": [
{
"name": "Mohd Saqueib Ansari",
"email": "saquibweb@gmail.com"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0",
"qcod/laravel-settings": "^1.1"
},
"require-dev": {
"orchestra/testbench": "4.*|5.*|6.*",
"mockery/mockery": "^0.9.4 || ~1.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"QCod\\AppSettings\\": "src/"
"name": "qcod/laravel-app-settings",
"description": "A package with UI to store and manage all the settings for your application",
"homepage": "https://github.com/qcod/laravel-app-settings",
"type": "library",
"license": "MIT",
"keywords": [
"qcod",
"laravel",
"database settings",
"db settings",
"app settings",
"setting ui",
"bootstrap",
"eloquent"
],
"authors": [
{
"name": "Mohd Saqueib Ansari",
"email": "saquibweb@gmail.com"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0",
"qcod/laravel-settings": "^1.1"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"QCod\\AppSettings\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"QCod\\AppSettings\\AppSettingsServiceProvider"
],
"aliases": {
"AppSettings": "QCod\\AppSettings\\Facade"
}
"require-dev": {
"orchestra/testbench": "4.*|5.*|6.*|^8.0",
"mockery/mockery": "^0.9.4 || ~1.0",
"phpunit/phpunit": "^8.5|^9.5.10"
},
"autoload": {
"psr-4": {
"QCod\\AppSettings\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"QCod\\AppSettings\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"QCod\\AppSettings\\AppSettingsServiceProvider"
],
"aliases": {
"AppSettings": "QCod\\AppSettings\\Facade"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}

0 comments on commit ca7a220

Please sign in to comment.