Skip to content

Commit

Permalink
Merge pull request #153 from dbarzin/dev
Browse files Browse the repository at this point in the history
Laravel 11
  • Loading branch information
dbarzin authored Oct 4, 2024
2 parents 215b574 + 60e4f60 commit 8298211
Show file tree
Hide file tree
Showing 5 changed files with 1,588 additions and 4,889 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'
extensions: zip, curl, mbstring, dom, ldap, soap, xdebug, mysql, gd

- name: Configrue Storage Permission
Expand Down Expand Up @@ -67,10 +67,6 @@ jobs:
run: |
php artisan deming:generate-tests
- name: Check code quality
run: |
php artisan insights
- name: Run Laravel Server
run: |
php artisan serve --no-reload &
46 changes: 18 additions & 28 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,38 @@
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.1",
"enyo/dropzone": "^5.9",
"php": "^8.2",
"erusev/parsedown": "^1.7",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/passport": "^11.8",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.2",
"laravel/framework": "^11.9",
"laravel/passport": "^12.3",
"laravel/sanctum": "*",
"laravel/tinker": "^2.9",
"laravel/ui": "^4.5",
"maatwebsite/excel": "^3.1",
"phpoffice/phpword": "^1.3"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"nunomaduro/phpinsights": "^2.8",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0"
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0.1"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
"Tests\\": "tests/"
}
},
"scripts": {
Expand All @@ -59,7 +47,9 @@
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"extra": {
Expand Down
Loading

0 comments on commit 8298211

Please sign in to comment.