This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Pascal Baljet <[email protected]>
- Loading branch information
1 parent
656479c
commit 21086aa
Showing
22 changed files
with
1,737 additions
and
1,727 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
strategy: | ||
matrix: | ||
php-version: | ||
- "8.0" | ||
- "8.1" | ||
node-version: | ||
- 16 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"name": "laravel/laravel", | ||
"type": "project", | ||
"description": "The Laravel Framework.", | ||
"keywords": [ | ||
"framework", | ||
"laravel" | ||
], | ||
"license": "MIT", | ||
"require": { | ||
"php": "^8.1|^8.2", | ||
"guzzlehttp/guzzle": "^7.2", | ||
"inertiajs/inertia-laravel": "^0.6.9", | ||
"laravel/breeze": "^1.9", | ||
"laravel/dusk": "^6.24", | ||
"laravel/framework": "^9.37", | ||
"laravel/sanctum": "^2.8", | ||
"laravel/tinker": "^2.7", | ||
"protonemedia/inertiajs-tables-laravel-query-builder": "@dev", | ||
"spatie/laravel-query-builder": "^5.0", | ||
"tightenco/ziggy": "^1.0" | ||
}, | ||
"require-dev": { | ||
"fakerphp/faker": "^1.9.1", | ||
"friendsofphp/php-cs-fixer": "^3.8", | ||
"mockery/mockery": "^1.4.4", | ||
"nunomaduro/collision": "^6.1", | ||
"phpunit/phpunit": "^9.5.10", | ||
"spatie/laravel-ignition": "^1.0" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "path", | ||
"url": "../" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/", | ||
"Database\\Factories\\": "database/factories/", | ||
"Database\\Seeders\\": "database/seeders/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"post-autoload-dump": [ | ||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
"@php artisan package:discover --ansi" | ||
], | ||
"post-update-cmd": [ | ||
"@php artisan vendor:publish --tag=laravel-assets --ansi --force" | ||
], | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@php artisan key:generate --ansi" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [] | ||
} | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist", | ||
"sort-packages": true | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.