init
parents
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.npmrc
0 → 100644
Beanding Guide.txt
0 → 100644
CLAUDE.md
0 → 100644
README.md
0 → 100644
app/Models/User.php
0 → 100644
artisan
0 → 100755
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
bootstrap/providers.php
0 → 100644
composer.json
0 → 100644
| { | ||
| "$schema": "https://getcomposer.org/schema.json", | ||
| "name": "laravel/laravel", | ||
| "type": "project", | ||
| "description": "The skeleton application for the Laravel framework.", | ||
| "keywords": ["laravel", "framework"], | ||
| "license": "MIT", | ||
| "require": { | ||
| "php": "^8.3", | ||
| "laravel/framework": "^13.8", | ||
| "laravel/tinker": "^3.0" | ||
| }, | ||
| "require-dev": { | ||
| "fakerphp/faker": "^1.23", | ||
| "laravel/pail": "^1.2.5", | ||
| "laravel/pao": "^1.0.6", | ||
| "laravel/pint": "^1.27", | ||
| "mockery/mockery": "^1.6", | ||
| "nunomaduro/collision": "^8.6", | ||
| "phpunit/phpunit": "^12.5.12" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "App\\": "app/", | ||
| "Database\\Factories\\": "database/factories/", | ||
| "Database\\Seeders\\": "database/seeders/" | ||
| } | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "Tests\\": "tests/" | ||
| } | ||
| }, | ||
| "scripts": { | ||
| "setup": [ | ||
| "composer install", | ||
| "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"", | ||
| "@php artisan key:generate", | ||
| "@php artisan migrate --force", | ||
| "npm install --ignore-scripts", | ||
| "npm run build" | ||
| ], | ||
| "dev": [ | ||
| "Composer\\Config::disableProcessTimeout", | ||
| "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1 --timeout=0\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others" | ||
| ], | ||
| "test": [ | ||
| "@php artisan config:clear --ansi @no_additional_args", | ||
| "@php artisan test" | ||
| ], | ||
| "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", | ||
| "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"", | ||
| "@php artisan migrate --graceful --ansi" | ||
| ], | ||
| "pre-package-uninstall": [ | ||
| "Illuminate\\Foundation\\ComposerScripts::prePackageUninstall" | ||
| ] | ||
| }, | ||
| "extra": { | ||
| "laravel": { | ||
| "dont-discover": [] | ||
| } | ||
| }, | ||
| "config": { | ||
| "optimize-autoloader": true, | ||
| "preferred-install": "dist", | ||
| "sort-packages": true, | ||
| "allow-plugins": { | ||
| "pestphp/pest-plugin": true, | ||
| "php-http/discovery": true | ||
| } | ||
| }, | ||
| "minimum-stability": "stable", | ||
| "prefer-stable": true | ||
| } |
composer.lock
0 → 100644
This diff is collapsed.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/cache.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
database/.gitignore
0 → 100644
elcaptain-sportsonly-db.md
0 → 100644
package.json
0 → 100644
| { | ||
| "$schema": "https://www.schemastore.org/package.json", | ||
| "private": true, | ||
| "type": "module", | ||
| "scripts": { | ||
| "build": "vite build", | ||
| "dev": "vite" | ||
| }, | ||
| "devDependencies": { | ||
| "@tailwindcss/vite": "^4.0.0", | ||
| "concurrently": "^9.0.1", | ||
| "laravel-vite-plugin": "^3.1", | ||
| "tailwindcss": "^4.0.0", | ||
| "vite": "^8.0.0" | ||
| } | ||
| } |
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/favicon.ico
0 → 100644
public/index.php
0 → 100644
public/robots.txt
0 → 100644
resources/css/app.css
0 → 100644
resources/js/app.js
0 → 100644
This diff is collapsed.
routes/console.php
0 → 100644
routes/web.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/framework/.gitignore
0 → 100644
storage/logs/.gitignore
0 → 100644
system info.txt
0 → 100644
This diff is collapsed.
tests/TestCase.php
0 → 100644
tests/Unit/ExampleTest.php
0 → 100644
vite.config.js
0 → 100644
Please register or sign in to comment