inital commit
parents
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
| { | ||
| "name": "laravel/laravel", | ||
| "type": "project", | ||
| "description": "The Laravel Framework.", | ||
| "keywords": ["framework", "laravel"], | ||
| "license": "MIT", | ||
| "require": { | ||
| "php": "^7.3|^8.0", | ||
| "fruitcake/laravel-cors": "^2.0", | ||
| "guzzlehttp/guzzle": "^7.0.1", | ||
| "laravel/framework": "^8.75", | ||
| "laravel/sanctum": "^2.11", | ||
| "laravel/tinker": "^2.5" | ||
| }, | ||
| "require-dev": { | ||
| "facade/ignition": "^2.5", | ||
| "fakerphp/faker": "^1.9.1", | ||
| "laravel/sail": "^1.0.1", | ||
| "mockery/mockery": "^1.4.4", | ||
| "nunomaduro/collision": "^5.10", | ||
| "phpunit/phpunit": "^9.5.10" | ||
| }, | ||
| "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 | ||
| } |
composer.lock
0 → 100644
This diff is collapsed.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/broadcasting.php
0 → 100644
config/cache.php
0 → 100644
config/cors.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/hashing.php
0 → 100644
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
Please register or sign in to comment