Skip to content

Commit

Permalink
Merge pull request #145 from JunaidJaved8461/developed
Browse files Browse the repository at this point in the history
Upgraded into Laravel 8 (Avored/Framework)
  • Loading branch information
indpurvesh authored Oct 17, 2020
2 parents 848104c + 516e7ad commit 635ed71
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/avored-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ jobs:
fail-fast: true
matrix:
# php: ['7.2', '7.3', '7.4']
php: ['7.2']
laravel: ['5.8.*', '6.*', '7.*']
php: ['7.3']
laravel: ['5.8.*', '6.*', '7.*', '8.*']
include:
- laravel: '5.8.*'
testbench: '3.8.*'
- laravel: '6.*'
testbench: '4.*'
- laravel: '7.*'
testbench: '5.*'
- laravel: '8.*'
testbench: '6.*'

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
22 changes: 12 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,30 @@
],
"type" : "library",
"require" : {
"php" : ">=7.2",
"php" : ">=7.3.5",
"symfony/yaml": "^4.2",
"laravel/passport": "^7.4|^8.0|^9.0",
"laravel/passport": "^7.4|^8.0|^9.0|^10.0",
"barryvdh/laravel-dompdf": "^0.8.4",
"laravel/helpers": "^1.1",
"laravel/framework" : "^5.8.15|^6.0|^7.0",
"laravel/framework" : "^5.8.15|^6.0|^7.0|^8.0",
"rebing/graphql-laravel": "^5.1",
"laravel/ui": "^2.0|^1.0",
"doctrine/dbal": "^2.10"
"doctrine/dbal": "^2.10",
"laravel/legacy-factories": "^1.0",
"illuminate/macroable": "^8.0",
"symfony/finder": "^3.4|^4.0|^5.0"
},
"require-dev" : {
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^3.8|^4.0|^5.0",
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
"phpstan/phpstan": "^0.12.27"
},
"autoload" : {
"classmap": [
"database/factories"
],
"psr-4" : {
"AvoRed\\Framework\\" : "src/"

"AvoRed\\Framework\\" : "src/",
"AvoRed\\Framework\\App\\": "app/",
"AvoRed\\Framework\\Database\\Factories\\": "database/factories/",
"AvoRed\\Framework\\Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev" : {
Expand Down

0 comments on commit 635ed71

Please sign in to comment.