├── public ├── favicon.ico ├── robots.txt ├── build │ ├── manifest.json │ └── assets │ │ ├── app-DFKTp3MU.css │ │ └── app-D9zIAOJW.js ├── index.php └── .htaccess ├── database ├── .gitignore ├── seeders │ └── DatabaseSeeder.php ├── migrations │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000000_create_users_table.php │ └── 0001_01_01_000002_create_jobs_table.php └── factories │ └── UserFactory.php ├── var └── .gitignore ├── bootstrap ├── cache │ └── .gitignore ├── providers.php └── app.php ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── views │ └── errors │ │ ├── 404.blade.php │ │ └── minimal.blade.php ├── ts │ ├── bootstrap.ts │ └── app.ts └── css │ └── app.css ├── storage ├── logs │ └── .gitignore ├── app │ ├── private │ │ └── .gitignore │ ├── public │ │ └── .gitignore │ └── .gitignore ├── debugbar │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── docker ├── dockerfiles │ ├── node │ │ └── Dockerfile │ ├── mysql │ │ ├── Dockerfile │ │ └── Dockerfile.dockerignore │ ├── nginx │ │ ├── Dockerfile.dockerignore │ │ └── Dockerfile │ └── php │ │ ├── Dockerfile.dockerignore │ │ └── Dockerfile └── config │ ├── php │ ├── entrypoint-dev.sh │ ├── entrypoint-prod.sh │ ├── xdebug.ini │ ├── php-fpm.conf │ └── supervisord.conf │ ├── mysql │ ├── init │ │ └── create_database.sql │ └── mysql.cnf │ └── nginx │ └── nginx.conf ├── tools ├── larastan │ └── composer.json ├── rector │ ├── composer.json │ └── composer.lock └── php-cs-fixer │ └── composer.json ├── app ├── Http │ ├── Controllers │ │ └── Controller.php │ └── Middleware │ │ └── MiddlewareHandler.php ├── Console │ ├── ScheduleHandler.php │ └── Commands │ │ └── HealthCommand.php ├── Providers │ ├── RouteServiceProvider.php │ └── AppServiceProvider.php ├── Models │ └── User.php └── Exceptions │ └── ExceptionsHandler.php ├── routes ├── web.php └── console.php ├── .gitattributes ├── phpstan.neon ├── .editorconfig ├── .gitignore ├── .gitignore-docker ├── .env.testing.example ├── artisan ├── tests ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── TestCase.php ├── tsconfig.json ├── package.json ├── vite.config.js ├── rector.php ├── tailwind.config.js ├── config ├── services.php ├── filesystems.php ├── cache.php ├── mail.php ├── queue.php ├── auth.php ├── app.php ├── logging.php ├── database.php ├── session.php └── debugbar.php ├── phpunit.xml ├── .php-cs-fixer.dist.php ├── .env.example ├── composer.json ├── Makefile ├── docker-compose.yml └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /var/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docker/dockerfiles/node/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:25.2-alpine3.22 -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !private/ 3 | !public/ 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /docker/config/php/entrypoint-dev.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | exec "$@" -------------------------------------------------------------------------------- /docker/dockerfiles/mysql/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mysql:9.5 2 | 3 | RUN rm -rf /docker -------------------------------------------------------------------------------- /docker/config/mysql/init/create_database.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE IF NOT EXISTS `my_database_test`; -------------------------------------------------------------------------------- /docker/dockerfiles/mysql/Dockerfile.dockerignore: -------------------------------------------------------------------------------- 1 | /docker 2 | /Makefile 3 | docker-compose.yml -------------------------------------------------------------------------------- /docker/dockerfiles/nginx/Dockerfile.dockerignore: -------------------------------------------------------------------------------- 1 | /docker 2 | /Makefile 3 | docker-compose.yml -------------------------------------------------------------------------------- /docker/dockerfiles/php/Dockerfile.dockerignore: -------------------------------------------------------------------------------- 1 | /docker 2 | !/docker/config/php 3 | /Makefile 4 | docker-compose.yml -------------------------------------------------------------------------------- /tools/larastan/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require-dev": { 3 | "larastan/larastan": "^3.6" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /docker/dockerfiles/nginx/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM nginx:1.29-alpine AS dev 2 | 3 | COPY . /var/www/app 4 | 5 | RUN rm -rf /docker 6 | 7 | EXPOSE 80 -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | first(); 8 | return view('welcome', ['user' => $user]); 9 | }); 10 | -------------------------------------------------------------------------------- /tools/php-cs-fixer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require-dev": { 3 | "friendsofphp/php-cs-fixer": "^3.89.2" 4 | }, 5 | "config": { 6 | "bump-after-update": "dev", 7 | "sort-packages": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 8 | })->purpose('Display an inspiring quote')->hourly(); 9 | -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- 1 | includes: 2 | - tools/larastan/vendor/larastan/larastan/extension.neon 3 | 4 | parameters: 5 | editorUrl: 'anything' 6 | editorUrlTitle: "\nat %%relFile%%:%%line%%" 7 | level: max 8 | paths: 9 | - app 10 | - tests 11 | -------------------------------------------------------------------------------- /resources/ts/bootstrap.ts: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | declare global { 4 | interface Window { 5 | axios: typeof axios; 6 | } 7 | } 8 | 9 | window.axios = axios; 10 | 11 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 12 | -------------------------------------------------------------------------------- /app/Console/ScheduleHandler.php: -------------------------------------------------------------------------------- 1 | info('App is working!'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | handleCommand(new ArgvInput); 14 | 15 | exit($status); 16 | -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- 1 | assertEquals(['name', 'email', 'password'], $user->getFillable()); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | 3 | @source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php'; 4 | @source '../../storage/framework/views/*.php'; 5 | @source "../**/*.blade.php"; 6 | @source "../**/*.js"; 7 | @source "../**/*.vue"; 8 | 9 | @theme { 10 | --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 11 | 'Segoe UI Symbol', 'Noto Color Emoji'; 12 | } -------------------------------------------------------------------------------- /docker/config/php/php-fpm.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | error_log = /dev/stderr 3 | 4 | [www] 5 | access.log = /dev/stdout 6 | 7 | catch_workers_output = yes 8 | decorate_workers_output = no 9 | 10 | user = www-data 11 | group = www-data 12 | 13 | listen = 9000 14 | 15 | listen.owner = www-data 16 | listen.group = www-data 17 | 18 | pm = dynamic 19 | 20 | pm.max_children = 6 21 | 22 | pm.start_servers = 2 23 | 24 | pm.min_spare_servers = 1 25 | 26 | pm.max_spare_servers = 3 27 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "module": "ESNext", 5 | "moduleResolution": "node", 6 | "strict": true, 7 | "esModuleInterop": true, 8 | "skipLibCheck": true, 9 | "forceConsistentCasingInFileNames": true, 10 | "outDir": "./public/js", 11 | "baseUrl": "./resources/ts" 12 | }, 13 | "include": [ 14 | "resources/ts/**/*.ts" 15 | ], 16 | "exclude": ["node_modules"] 17 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "type": "module", 4 | "scripts": { 5 | "build": "vite build", 6 | "dev": "vite" 7 | }, 8 | "devDependencies": { 9 | "@tailwindcss/vite": "^4.0.0", 10 | "axios": "^1.7.4", 11 | "concurrently": "^9.0.1", 12 | "laravel-vite-plugin": "^1.2.0", 13 | "tailwindcss": "^4.0.0", 14 | "typescript": "^5.7.3", 15 | "vite": "^6.0.11", 16 | "vite-plugin-checker": "^0.9.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 15 | $response->assertStatus(200); 16 | 17 | $user = User::query()->first(); 18 | $this->assertNotNull($user); 19 | $response->assertSee($user->name); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | handleRequest(Request::capture()); 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/MiddlewareHandler.php: -------------------------------------------------------------------------------- 1 | */ 12 | protected array $aliases = [ 13 | 14 | ]; 15 | 16 | public function __invoke(Middleware $middleware): Middleware 17 | { 18 | if ($this->aliases) { 19 | $middleware->alias($this->aliases); 20 | } 21 | 22 | return $middleware; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 17 | 18 | User::factory()->create([ 19 | 'name' => 'Test User', 20 | 'email' => 'test@example.com', 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- 1 | withMiddleware(new MiddlewareHandler()) 10 | ->withSchedule(new ScheduleHandler()) 11 | ->withExceptions(new ExceptionsHandler()) 12 | ->withRouting( 13 | web: __DIR__.'/../routes/web.php', 14 | commands: __DIR__.'/../routes/console.php', 15 | health: '/up', 16 | ) 17 | ->create(); 18 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import laravel from 'laravel-vite-plugin'; 3 | import tailwindcss from '@tailwindcss/vite'; 4 | import checker from "vite-plugin-checker"; 5 | 6 | export default defineConfig({ 7 | server: { 8 | host: '0.0.0.0', 9 | hmr: { 10 | host: 'localhost', 11 | } 12 | }, 13 | plugins: [ 14 | laravel({ 15 | input: ['resources/css/app.css', 'resources/ts/app.ts'], 16 | refresh: true, 17 | }), 18 | tailwindcss(), 19 | checker({ typescript: true }) 20 | ], 21 | }); -------------------------------------------------------------------------------- /resources/ts/app.ts: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | 3 | document.addEventListener("DOMContentLoaded", function(): void { 4 | const user = new User('test', 1) 5 | console.log(user) 6 | console.log(user.getUserId()) 7 | }); 8 | 9 | class User { 10 | private readonly name: string 11 | 12 | private readonly userId: number 13 | 14 | constructor(name: string, userId: number) { 15 | this.name = name 16 | this.userId = userId 17 | } 18 | 19 | getName(): string { 20 | return this.name 21 | } 22 | 23 | getUserId(): number { 24 | return this.userId 25 | } 26 | } -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | isProduction()); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- 1 | withPaths([ 11 | __DIR__ . '/app', 12 | __DIR__ . '/tests', 13 | ]) 14 | ->withParallel() 15 | ->withCache(__DIR__ . '/var/rector') 16 | ->withPhpSets() 17 | ->withSkip([ 18 | StringableForToStringRector::class, 19 | AddOverrideAttributeToOverriddenMethodsRector::class, 20 | ]); 21 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | import defaultTheme from 'tailwindcss/defaultTheme'; 2 | 3 | /** @type {import('tailwindcss').Config} */ 4 | export default { 5 | content: [ 6 | './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', 7 | './storage/framework/views/*.php', 8 | './resources/**/*.blade.php', 9 | './resources/**/*.js', 10 | './resources/**/*.vue', 11 | ], 12 | theme: { 13 | extend: { 14 | fontFamily: { 15 | sans: ['Figtree', ...defaultTheme.fontFamily.sans], 16 | }, 17 | }, 18 | }, 19 | plugins: [], 20 | }; 21 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | withoutVite(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /docker/config/php/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisorctl] 2 | serverurl=unix:///run/supervisor.sock 3 | 4 | [supervisord] 5 | nodaemon=true 6 | logfile=/dev/null 7 | pidfile=/usr/src/supervisord.pid 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | 13 | [program:default-worker] 14 | user=www-data 15 | process_name=%(program_name)s_%(process_num)02d 16 | command=nice -n 10 php /var/www/app/artisan queue:work --queue=default --tries=3 --verbose --timeout=30 --sleep=3 --max-jobs=1000 --max-time=3600 17 | numprocs=1 18 | autostart=true 19 | autorestart=true 20 | stopasgroup=true 21 | killasgroup=true 22 | stopwaitsecs=3600 23 | stdout_logfile=/dev/stdout 24 | stdout_logfile_maxbytes=0 25 | stderr_logfile=/dev/stderr 26 | stderr_logfile_maxbytes=0 27 | -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- 1 | */ 13 | use HasFactory; 14 | 15 | use Notifiable; 16 | 17 | protected $fillable = [ 18 | 'name', 19 | 'email', 20 | 'password', 21 | ]; 22 | 23 | protected $hidden = [ 24 | 'password', 25 | 'remember_token', 26 | ]; 27 | 28 | protected function casts(): array 29 | { 30 | return [ 31 | 'email_verified_at' => 'datetime', 32 | 'password' => 'hashed', 33 | ]; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /docker/config/nginx/nginx.conf: -------------------------------------------------------------------------------- 1 | worker_processes auto; 2 | 3 | events { 4 | worker_connections 1024; 5 | } 6 | 7 | http { 8 | access_log off; 9 | error_log /var/log/nginx/error.log; 10 | include /etc/nginx/mime.types; 11 | 12 | gzip on; 13 | gzip_comp_level 4; 14 | gzip_types text/css application/javascript image/jpeg image/png; 15 | 16 | server { 17 | listen 80; 18 | server_name localhost; 19 | root /var/www/app/public; 20 | index index.php index.html; 21 | 22 | error_log /var/log/nginx/app-error.log; 23 | 24 | location ~\.php { 25 | try_files $uri =404; 26 | include /etc/nginx/fastcgi.conf; 27 | fastcgi_pass php:9000; 28 | fastcgi_index index.php; 29 | fastcgi_param PATH_INFO $fastcgi_path_info; 30 | } 31 | 32 | location / { 33 | try_files $uri $uri/ /index.php?$query_string; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- 1 | string('key')->primary(); 16 | $table->mediumText('value'); 17 | $table->integer('expiration'); 18 | }); 19 | 20 | Schema::create('cache_locks', function (Blueprint $table) { 21 | $table->string('key')->primary(); 22 | $table->string('owner'); 23 | $table->integer('expiration'); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | */ 30 | public function down(): void 31 | { 32 | Schema::dropIfExists('cache'); 33 | Schema::dropIfExists('cache_locks'); 34 | } 35 | }; 36 | -------------------------------------------------------------------------------- /app/Exceptions/ExceptionsHandler.php: -------------------------------------------------------------------------------- 1 | renderable( 17 | function (NotFoundHttpException $e, ?Request $request = null) { 18 | if ($request?->is('api/*')) { 19 | return $this->jsonResponse($e->getStatusCode()); 20 | } 21 | 22 | return response()->view('errors.404', status: $e->getStatusCode()); 23 | } 24 | ); 25 | 26 | return $exceptions; 27 | } 28 | 29 | private function jsonResponse(int $code): JsonResponse 30 | { 31 | return response()->json([ 32 | 'error' => "HTTP error: $code", 33 | ])->setStatusCode($code); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'token' => env('POSTMARK_TOKEN'), 19 | ], 20 | 21 | 'ses' => [ 22 | 'key' => env('AWS_ACCESS_KEY_ID'), 23 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 24 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 25 | ], 26 | 27 | 'resend' => [ 28 | 'key' => env('RESEND_KEY'), 29 | ], 30 | 31 | 'slack' => [ 32 | 'notifications' => [ 33 | 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), 34 | 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), 35 | ], 36 | ], 37 | 38 | ]; 39 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class UserFactory extends Factory 13 | { 14 | /** 15 | * The current password being used by the factory. 16 | */ 17 | protected static ?string $password; 18 | 19 | /** 20 | * Define the model's default state. 21 | * 22 | * @return array 23 | */ 24 | public function definition(): array 25 | { 26 | return [ 27 | 'name' => fake()->name(), 28 | 'email' => fake()->unique()->safeEmail(), 29 | 'email_verified_at' => now(), 30 | 'password' => static::$password ??= Hash::make('password'), 31 | 'remember_token' => Str::random(10), 32 | ]; 33 | } 34 | 35 | /** 36 | * Indicate that the model's email address should be unverified. 37 | */ 38 | public function unverified(): static 39 | { 40 | return $this->state(fn (array $attributes) => [ 41 | 'email_verified_at' => null, 42 | ]); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | tests/Unit 11 | 12 | 13 | tests/Feature 14 | 15 | 16 | 17 | 18 | app 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in([ 5 | __DIR__ . '/app', 6 | __DIR__ . '/tests', 7 | ]) 8 | ->name('*.php') 9 | ->notName('*.blade.php') 10 | ->ignoreDotFiles(true) 11 | ->ignoreVCS(true); 12 | 13 | return (new PhpCsFixer\Config()) 14 | ->setRules([ 15 | '@PSR12' => true, 16 | 'array_syntax' => ['syntax' => 'short'], 17 | 'ordered_imports' => ['sort_algorithm' => 'alpha'], 18 | 'no_unused_imports' => true, 19 | 'not_operator_with_successor_space' => true, 20 | 'trailing_comma_in_multiline' => true, 21 | 'phpdoc_scalar' => true, 22 | 'unary_operator_spaces' => true, 23 | 'binary_operator_spaces' => true, 24 | 'blank_line_before_statement' => [ 25 | 'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'], 26 | ], 27 | 'phpdoc_single_line_var_spacing' => true, 28 | 'phpdoc_var_without_name' => true, 29 | 'method_argument_space' => [ 30 | 'on_multiline' => 'ensure_fully_multiline', 31 | 'keep_multiple_spaces_after_comma' => true, 32 | ], 33 | 'single_trait_insert_per_statement' => true, 34 | 'concat_space' => [ 35 | 'spacing' => 'one' 36 | ] 37 | ]) 38 | ->setFinder($finder) 39 | ->setCacheFile(__DIR__ . '/var/' . basename(__FILE__) . '.cache'); -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('name'); 17 | $table->string('email')->unique(); 18 | $table->timestamp('email_verified_at')->nullable(); 19 | $table->string('password'); 20 | $table->rememberToken(); 21 | $table->timestamps(); 22 | }); 23 | 24 | Schema::create('password_reset_tokens', function (Blueprint $table) { 25 | $table->string('email')->primary(); 26 | $table->string('token'); 27 | $table->timestamp('created_at')->nullable(); 28 | }); 29 | 30 | Schema::create('sessions', function (Blueprint $table) { 31 | $table->string('id')->primary(); 32 | $table->foreignId('user_id')->nullable()->index(); 33 | $table->string('ip_address', 45)->nullable(); 34 | $table->text('user_agent')->nullable(); 35 | $table->longText('payload'); 36 | $table->integer('last_activity')->index(); 37 | }); 38 | } 39 | 40 | /** 41 | * Reverse the migrations. 42 | */ 43 | public function down(): void 44 | { 45 | Schema::dropIfExists('users'); 46 | Schema::dropIfExists('password_reset_tokens'); 47 | Schema::dropIfExists('sessions'); 48 | } 49 | }; 50 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | #DOCKER 2 | GID=1000 3 | UID=1000 4 | 5 | COMPOSE_PROJECT_NAME=laravel-blank 6 | 7 | APP_PATH_HOST=./ 8 | 9 | APP_PATH=/var/www/app 10 | 11 | APP_WEB_PORT=80 12 | 13 | APP_MYSQL_PORT=3306 14 | MYSQL_ROOT_PASS=12345 15 | 16 | APP_REDIS_PORT=6379 17 | 18 | APP_VITE_PORT=5173 19 | 20 | XDEBUG_IDEKEY=MYIDEKEY 21 | XDEBUG_CLIENT_PORT=9003 22 | 23 | #Laravel 24 | APP_NAME=Laravel 25 | APP_ENV=local 26 | APP_KEY=base64:aL6o/U2e1ziUTXsyTkfzNziH9l4crCISoWMwC8LX4B0= 27 | APP_DEBUG=true 28 | APP_TIMEZONE=Europe/Moscow 29 | APP_URL="http://localhost:${APP_WEB_PORT}" 30 | 31 | APP_LOCALE=en 32 | APP_FALLBACK_LOCALE=en 33 | APP_FAKER_LOCALE=en_EN 34 | 35 | APP_MAINTENANCE_DRIVER=file 36 | APP_MAINTENANCE_STORE=database 37 | 38 | BCRYPT_ROUNDS=12 39 | 40 | LOG_CHANNEL=stack 41 | LOG_STACK=daily 42 | LOG_DEPRECATIONS_CHANNEL=null 43 | LOG_LEVEL=debug 44 | 45 | DB_CONNECTION=mysql 46 | DB_HOST="${COMPOSE_PROJECT_NAME}-db" 47 | DB_PORT=3306 48 | DB_DATABASE=my_database 49 | DB_USERNAME=root 50 | DB_PASSWORD="${MYSQL_ROOT_PASS}" 51 | 52 | SESSION_DRIVER=redis 53 | SESSION_LIFETIME=120 54 | SESSION_ENCRYPT=false 55 | SESSION_PATH=/ 56 | SESSION_DOMAIN=null 57 | 58 | BROADCAST_CONNECTION=log 59 | QUEUE_CONNECTION=redis 60 | FILESYSTEM_DISK=public 61 | 62 | CACHE_STORE=file 63 | CACHE_PREFIX= 64 | 65 | REDIS_CLIENT=phpredis 66 | REDIS_HOST="${COMPOSE_PROJECT_NAME}-redis" 67 | REDIS_PASSWORD=null 68 | REDIS_PORT=6379 69 | 70 | MAIL_MAILER=log 71 | MAIL_HOST=127.0.0.1 72 | MAIL_PORT=2525 73 | MAIL_USERNAME=null 74 | MAIL_PASSWORD=null 75 | MAIL_ENCRYPTION=null 76 | MAIL_FROM_ADDRESS="hello@example.com" 77 | MAIL_FROM_NAME="${APP_NAME}" 78 | 79 | AWS_ACCESS_KEY_ID= 80 | AWS_SECRET_ACCESS_KEY= 81 | AWS_DEFAULT_REGION=us-east-1 82 | AWS_BUCKET= 83 | AWS_USE_PATH_STYLE_ENDPOINT=false 84 | 85 | VITE_APP_NAME="${APP_NAME}" -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('queue')->index(); 17 | $table->longText('payload'); 18 | $table->unsignedTinyInteger('attempts'); 19 | $table->unsignedInteger('reserved_at')->nullable(); 20 | $table->unsignedInteger('available_at'); 21 | $table->unsignedInteger('created_at'); 22 | }); 23 | 24 | Schema::create('job_batches', function (Blueprint $table) { 25 | $table->string('id')->primary(); 26 | $table->string('name'); 27 | $table->integer('total_jobs'); 28 | $table->integer('pending_jobs'); 29 | $table->integer('failed_jobs'); 30 | $table->longText('failed_job_ids'); 31 | $table->mediumText('options')->nullable(); 32 | $table->integer('cancelled_at')->nullable(); 33 | $table->integer('created_at'); 34 | $table->integer('finished_at')->nullable(); 35 | }); 36 | 37 | Schema::create('failed_jobs', function (Blueprint $table) { 38 | $table->id(); 39 | $table->string('uuid')->unique(); 40 | $table->text('connection'); 41 | $table->text('queue'); 42 | $table->longText('payload'); 43 | $table->longText('exception'); 44 | $table->timestamp('failed_at')->useCurrent(); 45 | }); 46 | } 47 | 48 | /** 49 | * Reverse the migrations. 50 | */ 51 | public function down(): void 52 | { 53 | Schema::dropIfExists('jobs'); 54 | Schema::dropIfExists('job_batches'); 55 | Schema::dropIfExists('failed_jobs'); 56 | } 57 | }; 58 | -------------------------------------------------------------------------------- /docker/dockerfiles/php/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:8.4-fpm AS php 2 | 3 | WORKDIR /var/www/app 4 | 5 | ARG gid 6 | ARG uid 7 | 8 | RUN apt-get update && apt-get install -y \ 9 | git \ 10 | curl \ 11 | libpng-dev \ 12 | libonig-dev \ 13 | libxml2-dev \ 14 | libzip-dev \ 15 | libc6 \ 16 | zip \ 17 | unzip \ 18 | supervisor \ 19 | htop \ 20 | libjpeg62-turbo-dev \ 21 | libfreetype6-dev \ 22 | default-mysql-client 23 | 24 | RUN apt-get clean && rm -rf /var/lib/apt/lists/* 25 | 26 | RUN docker-php-ext-configure gd --with-jpeg --with-freetype 27 | RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd zip 28 | 29 | RUN pecl install redis \ 30 | && docker-php-ext-enable redis 31 | 32 | COPY --from=composer:2.8.5 /usr/bin/composer /usr/bin/composer 33 | 34 | RUN groupadd -g ${gid} app-user && useradd -u ${uid} -g app-user -m -s /bin/bash app-user 35 | RUN mkdir -p /var/www/app && chown -R app-user:app-user /var/www/app 36 | 37 | FROM php AS dev 38 | 39 | ARG xdebug_idekey 40 | ARG xdebug_client_port 41 | 42 | COPY ./docker/config/php/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini 43 | 44 | RUN pecl install xdebug-3.4.5 && \ 45 | docker-php-ext-enable xdebug && \ 46 | sed -i "s/^xdebug\.idekey=.*/xdebug.idekey=${xdebug_idekey}/" /usr/local/etc/php/conf.d/xdebug.ini && \ 47 | sed -i "s/^xdebug\.client_port=.*/xdebug.client_port=${xdebug_client_port}/" /usr/local/etc/php/conf.d/xdebug.ini 48 | 49 | COPY . . 50 | 51 | COPY ./docker/config/php/entrypoint-dev.sh /usr/local/bin/entrypoint.sh 52 | RUN chmod +x /usr/local/bin/entrypoint.sh 53 | 54 | RUN chmod -R 775 ./storage ./bootstrap/cache 55 | 56 | USER app-user 57 | 58 | ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] 59 | CMD ["php-fpm"] 60 | 61 | FROM php AS build 62 | 63 | COPY composer.json composer.lock ./ 64 | 65 | RUN composer install --no-dev --no-scripts --prefer-dist --no-progress --no-interaction 66 | 67 | COPY . . 68 | 69 | RUN composer dump-autoload --optimize && \ 70 | composer check-platform-reqs 71 | 72 | RUN chmod -R 775 ./storage ./bootstrap/cache 73 | 74 | FROM build AS prod 75 | COPY ./docker/config/php/entrypoint-prod.sh /usr/local/bin/entrypoint.sh 76 | RUN chmod +x /usr/local/bin/entrypoint.sh 77 | RUN rm -rf /docker 78 | ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] 79 | CMD ["php-fpm"] 80 | 81 | FROM build AS worker 82 | RUN rm -rf /docker 83 | CMD ["/bin/sh", "-c", "supervisord -c /etc/supervisor/supervisord.conf"] 84 | 85 | FROM build AS scheduler 86 | RUN rm -rf /docker 87 | CMD ["/bin/sh", "-c", "nice -n 10 sleep 60 && php /var/www/app/artisan schedule:run --verbose --no-interaction"] -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- 1 | env('FILESYSTEM_DISK', 'local'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Filesystem Disks 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Below you may configure as many filesystem disks as necessary, and you 24 | | may even configure multiple disks for the same driver. Examples for 25 | | most supported storage drivers are configured here for reference. 26 | | 27 | | Supported drivers: "local", "ftp", "sftp", "s3" 28 | | 29 | */ 30 | 31 | 'disks' => [ 32 | 33 | 'local' => [ 34 | 'driver' => 'local', 35 | 'root' => storage_path('app/private'), 36 | 'serve' => true, 37 | 'throw' => false, 38 | ], 39 | 40 | 'public' => [ 41 | 'driver' => 'local', 42 | 'root' => storage_path('app/public'), 43 | 'url' => env('APP_URL').'/storage', 44 | 'visibility' => 'public', 45 | 'throw' => false, 46 | ], 47 | 48 | 's3' => [ 49 | 'driver' => 's3', 50 | 'key' => env('AWS_ACCESS_KEY_ID'), 51 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 52 | 'region' => env('AWS_DEFAULT_REGION'), 53 | 'bucket' => env('AWS_BUCKET'), 54 | 'url' => env('AWS_URL'), 55 | 'endpoint' => env('AWS_ENDPOINT'), 56 | 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 57 | 'throw' => false, 58 | ], 59 | 60 | ], 61 | 62 | /* 63 | |-------------------------------------------------------------------------- 64 | | Symbolic Links 65 | |-------------------------------------------------------------------------- 66 | | 67 | | Here you may configure the symbolic links that will be created when the 68 | | `storage:link` Artisan command is executed. The array keys should be 69 | | the locations of the links and the values should be their targets. 70 | | 71 | */ 72 | 73 | 'links' => [ 74 | public_path('storage') => storage_path('app/public'), 75 | ], 76 | 77 | ]; 78 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://getcomposer.org/schema.json", 3 | "name": "laravel/laravel", 4 | "type": "project", 5 | "description": "The skeleton application for the Laravel framework.", 6 | "keywords": [ 7 | "laravel", 8 | "framework" 9 | ], 10 | "license": "MIT", 11 | "require": { 12 | "php": "^8.4", 13 | "laravel/framework": "^12.0", 14 | "laravel/tinker": "^2.10.1" 15 | }, 16 | "require-dev": { 17 | "bamarni/composer-bin-plugin": "^1.8", 18 | "barryvdh/laravel-debugbar": "^3.15", 19 | "fakerphp/faker": "^1.23", 20 | "laravel/pail": "^1.2.2", 21 | "laravel/pint": "^1.13", 22 | "laravel/sail": "^1.41", 23 | "mockery/mockery": "^1.6", 24 | "nunomaduro/collision": "^8.6", 25 | "phpunit/phpunit": "^12.3" 26 | }, 27 | "autoload": { 28 | "psr-4": { 29 | "App\\": "app/", 30 | "Database\\Factories\\": "database/factories/", 31 | "Database\\Seeders\\": "database/seeders/" 32 | } 33 | }, 34 | "autoload-dev": { 35 | "psr-4": { 36 | "Tests\\": "tests/" 37 | } 38 | }, 39 | "scripts": { 40 | "post-autoload-dump": [ 41 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", 42 | "@php artisan package:discover --ansi" 43 | ], 44 | "post-update-cmd": [ 45 | "@php artisan vendor:publish --tag=laravel-assets --ansi --force" 46 | ], 47 | "post-root-package-install": [ 48 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" 49 | ], 50 | "post-create-project-cmd": [ 51 | "@php artisan key:generate --ansi", 52 | "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"", 53 | "@php artisan migrate --graceful --ansi" 54 | ], 55 | "dev": [ 56 | "Composer\\Config::disableProcessTimeout", 57 | "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite" 58 | ] 59 | }, 60 | "extra": { 61 | "bamarni-bin": { 62 | "bin-links": false, 63 | "forward-command": true, 64 | "target-directory": "tools" 65 | }, 66 | "laravel": { 67 | "dont-discover": [] 68 | } 69 | }, 70 | "config": { 71 | "optimize-autoloader": true, 72 | "preferred-install": "dist", 73 | "sort-packages": true, 74 | "allow-plugins": { 75 | "bamarni/composer-bin-plugin": true, 76 | "pestphp/pest-plugin": true, 77 | "php-http/discovery": true 78 | } 79 | }, 80 | "minimum-stability": "stable", 81 | "prefer-stable": true 82 | } 83 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | -include .env 2 | 3 | THIS_FILE := $(lastword $(MAKEFILE_LIST)) 4 | 5 | app := $(COMPOSE_PROJECT_NAME)-php 6 | nginx := $(COMPOSE_PROJECT_NAME)-nginx 7 | mysql := $(COMPOSE_PROJECT_NAME)-mysql 8 | app-npm := npm 9 | path := /var/www/app 10 | run := docker exec $(app) 11 | 12 | #docker 13 | .PHONY: init 14 | init: build install 15 | 16 | .PHONY: build 17 | build: 18 | docker-compose -f docker-compose.yml up --build -d $(c) 19 | @echo "Run command: make install" 20 | @echo "$(APP_URL)" 21 | 22 | .PHONY: install 23 | install: composer-install composer-update migrate-fresh npm-install npm-update npm-build restart-worker check 24 | @echo "$(APP_URL)" 25 | 26 | .PHONY: rebuild 27 | rebuild: 28 | docker compose down --remove-orphans 29 | IMAGES=$$(docker images --filter=reference="$(COMPOSE_PROJECT_NAME)*:*" -q); \ 30 | if [ -n "$$IMAGES" ]; then docker rmi $$IMAGES -f; else echo "No images to remove"; fi 31 | make build 32 | 33 | .PHONY: rebuild-app 34 | rebuild-app: 35 | docker-compose up -d --force-recreate --no-deps --build php 36 | 37 | .PHONY: restart-worker 38 | restart-worker: 39 | docker restart $(COMPOSE_PROJECT_NAME)-worker 40 | 41 | .PHONY: up 42 | up: 43 | docker-compose -f docker-compose.yml up -d $(c) 44 | @echo "$(APP_URL)" 45 | 46 | .PHONY: stop 47 | stop: 48 | docker-compose -f docker-compose.yml stop $(c) 49 | 50 | .PHONY: it 51 | it: 52 | docker exec -it $(to) /bin/bash 53 | 54 | .PHONY: it-app 55 | it-app: 56 | docker exec -it $(app) /bin/bash 57 | 58 | .PHONY: it-nginx 59 | it-nginx: 60 | docker exec -it $(nginx) /bin/bash 61 | 62 | .PHONY: it-mysql 63 | it-mysql: 64 | docker exec -it $(mysql) /bin/bash 65 | 66 | .PHONY: migrate 67 | migrate: 68 | $(run) php artisan migrate 69 | 70 | .PHONY: migrate-rollback 71 | migrate-rollback: 72 | $(run) php artisan migrate:rollback 73 | 74 | .PHONY: migrate-fresh 75 | migrate-fresh: 76 | $(run) php artisan migrate:fresh --seed 77 | 78 | .PHONY: migration 79 | migration: 80 | $(run) php artisan make:migration $(m) 81 | 82 | #composer 83 | .PHONY: composer-install 84 | composer-install: 85 | $(run) composer install 86 | 87 | .PHONY: composer-update 88 | composer-update: 89 | $(run) composer update 90 | 91 | .PHONY: composer-du 92 | composer-du: 93 | $(run) composer du 94 | 95 | #Tools 96 | .PHONY: test 97 | test: 98 | $(run) php artisan test 99 | 100 | .PHONY: rector 101 | rector: 102 | $(run) tools/rector/vendor/bin/rector process --dry-run 103 | 104 | .PHONY: fix-rector 105 | fix-rector: 106 | $(run) tools/rector/vendor/bin/rector process 107 | 108 | .PHONY: analyse 109 | analyse: 110 | $(run) php -d memory_limit=-1 tools/larastan/vendor/bin/phpstan analyse -c phpstan.neon 111 | 112 | .PHONY: fixcs 113 | fixcs: 114 | $(run) tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php 115 | 116 | .PHONY: lint 117 | lint: 118 | $(run) tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run 119 | 120 | .PHONY: check 121 | check: rector lint analyse test 122 | 123 | #npm 124 | .PHONY: npm 125 | npm: 126 | docker-compose run --rm --service-ports $(app-npm) $(c) 127 | 128 | .PHONY: npm-install 129 | npm-install: 130 | docker-compose run --rm --service-ports $(app-npm) install $(c) 131 | 132 | .PHONY: npm-update 133 | npm-update: 134 | docker-compose run --rm --service-ports $(app-npm) update $(c) 135 | 136 | .PHONY: npm-build 137 | npm-build: 138 | docker-compose run --rm --service-ports $(app-npm) run build $(c) 139 | 140 | .PHONY: npm-host 141 | npm-host: 142 | docker-compose run --rm --service-ports $(app-npm) run dev --host $(c) -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | nginx: 3 | build: 4 | context: . 5 | dockerfile: ./docker/dockerfiles/nginx/Dockerfile 6 | target: dev 7 | container_name: ${COMPOSE_PROJECT_NAME}-nginx 8 | ports: 9 | - "${APP_WEB_PORT}:80" 10 | volumes: 11 | - ./:${APP_PATH} 12 | - ./docker/config/nginx/nginx.conf:/etc/nginx/nginx.conf 13 | depends_on: 14 | - php 15 | 16 | php: 17 | build: 18 | args: 19 | gid: ${GID} 20 | uid: ${UID} 21 | xdebug_idekey: ${XDEBUG_IDEKEY} 22 | xdebug_client_port: ${XDEBUG_CLIENT_PORT} 23 | target: dev 24 | context: . 25 | dockerfile: ./docker/dockerfiles/php/Dockerfile 26 | target: dev 27 | container_name: ${COMPOSE_PROJECT_NAME}-php 28 | volumes: 29 | - ./:/var/www/app 30 | - ./docker/config/php/php.ini:/usr/local/etc/php/conf.d/php.ini 31 | - ./docker/config/php/php-fpm.conf:/usr/local/etc/php-fpm.d/www.conf 32 | extra_hosts: 33 | - "host.docker.internal:host-gateway" 34 | depends_on: 35 | db: 36 | condition: service_healthy 37 | redis: 38 | condition: service_healthy 39 | 40 | db: 41 | container_name: ${COMPOSE_PROJECT_NAME}-db 42 | build: 43 | context: . 44 | dockerfile: ./docker/dockerfiles/mysql/Dockerfile 45 | volumes: 46 | - db-data:/var/lib/mysql 47 | - ./docker/config/mysql/mysql.cnf:/etc/mysql/conf.d/mysql.cnf 48 | - ./docker/config/mysql/init:/docker-entrypoint-initdb.d 49 | ports: 50 | - "${APP_MYSQL_PORT}:3306" 51 | environment: 52 | - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASS} 53 | - MYSQL_DATABASE=${DB_DATABASE} 54 | healthcheck: 55 | test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ] 56 | timeout: 10s 57 | retries: 10 58 | 59 | redis: 60 | container_name: ${COMPOSE_PROJECT_NAME}-redis 61 | image: redis:8.2.0-alpine 62 | volumes: 63 | - redis-data:/data 64 | ports: 65 | - "${APP_REDIS_PORT}:6379" 66 | healthcheck: 67 | test: [ "CMD", "redis-cli", "ping" ] 68 | interval: 1s 69 | timeout: 3s 70 | retries: 30 71 | 72 | npm: 73 | build: 74 | context: . 75 | dockerfile: ./docker/dockerfiles/node/Dockerfile 76 | container_name: ${COMPOSE_PROJECT_NAME}-npm 77 | volumes: 78 | - ./:${APP_PATH}:cached 79 | - ./.env:${APP_PATH}/.env 80 | working_dir: ${APP_PATH} 81 | profiles: ["npm"] 82 | entrypoint: ['npm'] 83 | ports: 84 | - "${APP_VITE_PORT}:5173" 85 | 86 | scheduler: 87 | container_name: ${COMPOSE_PROJECT_NAME}-scheduler 88 | build: 89 | args: 90 | gid: ${GID} 91 | uid: ${UID} 92 | context: . 93 | dockerfile: ./docker/dockerfiles/php/Dockerfile 94 | target: scheduler 95 | volumes: 96 | - ./:${APP_PATH} 97 | - ./docker/config/php/php.ini:/usr/local/etc/php/conf.d/php.ini 98 | - ./docker/config/php/php-fpm.conf:/usr/local/etc/php-fpm-dev.d/www.conf 99 | restart: on-failure 100 | depends_on: 101 | - php 102 | 103 | worker: 104 | container_name: ${COMPOSE_PROJECT_NAME}-worker 105 | build: 106 | args: 107 | gid: ${GID} 108 | uid: ${UID} 109 | context: . 110 | dockerfile: ./docker/dockerfiles/php/Dockerfile 111 | target: worker 112 | volumes: 113 | - ./:${APP_PATH} 114 | - ./docker/config/php/supervisord.conf:/etc/supervisor/supervisord.conf 115 | - ./docker/config/php/php.ini:/usr/local/etc/php/conf.d/php.ini 116 | - ./docker/config/php/php-fpm.conf:/usr/local/etc/php-fpm-dev.d/www.conf 117 | restart: on-failure 118 | depends_on: 119 | - php 120 | 121 | volumes: 122 | db-data: 123 | redis-data: -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- 1 | env('CACHE_STORE', 'database'), 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Cache Stores 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may define all of the cache "stores" for your application as 26 | | well as their drivers. You may even define multiple stores for the 27 | | same cache driver to group types of items stored in your caches. 28 | | 29 | | Supported drivers: "array", "database", "file", "memcached", 30 | | "redis", "dynamodb", "octane", "null" 31 | | 32 | */ 33 | 34 | 'stores' => [ 35 | 36 | 'array' => [ 37 | 'driver' => 'array', 38 | 'serialize' => false, 39 | ], 40 | 41 | 'database' => [ 42 | 'driver' => 'database', 43 | 'connection' => env('DB_CACHE_CONNECTION'), 44 | 'table' => env('DB_CACHE_TABLE', 'cache'), 45 | 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), 46 | 'lock_table' => env('DB_CACHE_LOCK_TABLE'), 47 | ], 48 | 49 | 'file' => [ 50 | 'driver' => 'file', 51 | 'path' => storage_path('framework/cache/data'), 52 | 'lock_path' => storage_path('framework/cache/data'), 53 | ], 54 | 55 | 'memcached' => [ 56 | 'driver' => 'memcached', 57 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 58 | 'sasl' => [ 59 | env('MEMCACHED_USERNAME'), 60 | env('MEMCACHED_PASSWORD'), 61 | ], 62 | 'options' => [ 63 | // Memcached::OPT_CONNECT_TIMEOUT => 2000, 64 | ], 65 | 'servers' => [ 66 | [ 67 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 68 | 'port' => env('MEMCACHED_PORT', 11211), 69 | 'weight' => 100, 70 | ], 71 | ], 72 | ], 73 | 74 | 'redis' => [ 75 | 'driver' => 'redis', 76 | 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), 77 | 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), 78 | ], 79 | 80 | 'dynamodb' => [ 81 | 'driver' => 'dynamodb', 82 | 'key' => env('AWS_ACCESS_KEY_ID'), 83 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 84 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 85 | 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 86 | 'endpoint' => env('DYNAMODB_ENDPOINT'), 87 | ], 88 | 89 | 'octane' => [ 90 | 'driver' => 'octane', 91 | ], 92 | 93 | ], 94 | 95 | /* 96 | |-------------------------------------------------------------------------- 97 | | Cache Key Prefix 98 | |-------------------------------------------------------------------------- 99 | | 100 | | When utilizing the APC, database, memcached, Redis, and DynamoDB cache 101 | | stores, there might be other applications using the same cache. For 102 | | that reason, you may prefix every cache key to avoid collisions. 103 | | 104 | */ 105 | 106 | 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), 107 | 108 | ]; 109 | -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- 1 | env('MAIL_MAILER', 'log'), 18 | 19 | /* 20 | |-------------------------------------------------------------------------- 21 | | Mailer Configurations 22 | |-------------------------------------------------------------------------- 23 | | 24 | | Here you may configure all of the mailers used by your application plus 25 | | their respective settings. Several examples have been configured for 26 | | you and you are free to add your own as your application requires. 27 | | 28 | | Laravel supports a variety of mail "transport" drivers that can be used 29 | | when delivering an email. You may specify which one you're using for 30 | | your mailers below. You may also add additional mailers if needed. 31 | | 32 | | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", 33 | | "postmark", "resend", "log", "array", 34 | | "failover", "roundrobin" 35 | | 36 | */ 37 | 38 | 'mailers' => [ 39 | 40 | 'smtp' => [ 41 | 'transport' => 'smtp', 42 | 'url' => env('MAIL_URL'), 43 | 'host' => env('MAIL_HOST', '127.0.0.1'), 44 | 'port' => env('MAIL_PORT', 2525), 45 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 46 | 'username' => env('MAIL_USERNAME'), 47 | 'password' => env('MAIL_PASSWORD'), 48 | 'timeout' => null, 49 | 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), 50 | ], 51 | 52 | 'ses' => [ 53 | 'transport' => 'ses', 54 | ], 55 | 56 | 'postmark' => [ 57 | 'transport' => 'postmark', 58 | // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), 59 | // 'client' => [ 60 | // 'timeout' => 5, 61 | // ], 62 | ], 63 | 64 | 'resend' => [ 65 | 'transport' => 'resend', 66 | ], 67 | 68 | 'sendmail' => [ 69 | 'transport' => 'sendmail', 70 | 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), 71 | ], 72 | 73 | 'log' => [ 74 | 'transport' => 'log', 75 | 'channel' => env('MAIL_LOG_CHANNEL'), 76 | ], 77 | 78 | 'array' => [ 79 | 'transport' => 'array', 80 | ], 81 | 82 | 'failover' => [ 83 | 'transport' => 'failover', 84 | 'mailers' => [ 85 | 'smtp', 86 | 'log', 87 | ], 88 | ], 89 | 90 | 'roundrobin' => [ 91 | 'transport' => 'roundrobin', 92 | 'mailers' => [ 93 | 'ses', 94 | 'postmark', 95 | ], 96 | ], 97 | 98 | ], 99 | 100 | /* 101 | |-------------------------------------------------------------------------- 102 | | Global "From" Address 103 | |-------------------------------------------------------------------------- 104 | | 105 | | You may wish for all emails sent by your application to be sent from 106 | | the same address. Here you may specify a name and address that is 107 | | used globally for all emails that are sent by your application. 108 | | 109 | */ 110 | 111 | 'from' => [ 112 | 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 113 | 'name' => env('MAIL_FROM_NAME', 'Example'), 114 | ], 115 | 116 | ]; 117 | -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- 1 | env('QUEUE_CONNECTION', 'database'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Queue Connections 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may configure the connection options for every queue backend 24 | | used by your application. An example configuration is provided for 25 | | each backend supported by Laravel. You're also free to add more. 26 | | 27 | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" 28 | | 29 | */ 30 | 31 | 'connections' => [ 32 | 33 | 'sync' => [ 34 | 'driver' => 'sync', 35 | ], 36 | 37 | 'database' => [ 38 | 'driver' => 'database', 39 | 'connection' => env('DB_QUEUE_CONNECTION'), 40 | 'table' => env('DB_QUEUE_TABLE', 'jobs'), 41 | 'queue' => env('DB_QUEUE', 'default'), 42 | 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), 43 | 'after_commit' => false, 44 | ], 45 | 46 | 'beanstalkd' => [ 47 | 'driver' => 'beanstalkd', 48 | 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), 49 | 'queue' => env('BEANSTALKD_QUEUE', 'default'), 50 | 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), 51 | 'block_for' => 0, 52 | 'after_commit' => false, 53 | ], 54 | 55 | 'sqs' => [ 56 | 'driver' => 'sqs', 57 | 'key' => env('AWS_ACCESS_KEY_ID'), 58 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 59 | 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 60 | 'queue' => env('SQS_QUEUE', 'default'), 61 | 'suffix' => env('SQS_SUFFIX'), 62 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 63 | 'after_commit' => false, 64 | ], 65 | 66 | 'redis' => [ 67 | 'driver' => 'redis', 68 | 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), 69 | 'queue' => env('REDIS_QUEUE', 'default'), 70 | 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), 71 | 'block_for' => null, 72 | 'after_commit' => false, 73 | ], 74 | 75 | ], 76 | 77 | /* 78 | |-------------------------------------------------------------------------- 79 | | Job Batching 80 | |-------------------------------------------------------------------------- 81 | | 82 | | The following options configure the database and table that store job 83 | | batching information. These options can be updated to any database 84 | | connection and table which has been defined by your application. 85 | | 86 | */ 87 | 88 | 'batching' => [ 89 | 'database' => env('DB_CONNECTION', 'sqlite'), 90 | 'table' => 'job_batches', 91 | ], 92 | 93 | /* 94 | |-------------------------------------------------------------------------- 95 | | Failed Queue Jobs 96 | |-------------------------------------------------------------------------- 97 | | 98 | | These options configure the behavior of failed queue job logging so you 99 | | can control how and where failed jobs are stored. Laravel ships with 100 | | support for storing failed jobs in a simple file or in a database. 101 | | 102 | | Supported drivers: "database-uuids", "dynamodb", "file", "null" 103 | | 104 | */ 105 | 106 | 'failed' => [ 107 | 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 108 | 'database' => env('DB_CONNECTION', 'sqlite'), 109 | 'table' => 'failed_jobs', 110 | ], 111 | 112 | ]; 113 | -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'guard' => env('AUTH_GUARD', 'web'), 18 | 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), 19 | ], 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Authentication Guards 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Next, you may define every authentication guard for your application. 27 | | Of course, a great default configuration has been defined for you 28 | | which utilizes session storage plus the Eloquent user provider. 29 | | 30 | | All authentication guards have a user provider, which defines how the 31 | | users are actually retrieved out of your database or other storage 32 | | system used by the application. Typically, Eloquent is utilized. 33 | | 34 | | Supported: "session" 35 | | 36 | */ 37 | 38 | 'guards' => [ 39 | 'web' => [ 40 | 'driver' => 'session', 41 | 'provider' => 'users', 42 | ], 43 | ], 44 | 45 | /* 46 | |-------------------------------------------------------------------------- 47 | | User Providers 48 | |-------------------------------------------------------------------------- 49 | | 50 | | All authentication guards have a user provider, which defines how the 51 | | users are actually retrieved out of your database or other storage 52 | | system used by the application. Typically, Eloquent is utilized. 53 | | 54 | | If you have multiple user tables or models you may configure multiple 55 | | providers to represent the model / table. These providers may then 56 | | be assigned to any extra authentication guards you have defined. 57 | | 58 | | Supported: "database", "eloquent" 59 | | 60 | */ 61 | 62 | 'providers' => [ 63 | 'users' => [ 64 | 'driver' => 'eloquent', 65 | 'model' => env('AUTH_MODEL', App\Models\User::class), 66 | ], 67 | 68 | // 'users' => [ 69 | // 'driver' => 'database', 70 | // 'table' => 'users', 71 | // ], 72 | ], 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Resetting Passwords 77 | |-------------------------------------------------------------------------- 78 | | 79 | | These configuration options specify the behavior of Laravel's password 80 | | reset functionality, including the table utilized for token storage 81 | | and the user provider that is invoked to actually retrieve users. 82 | | 83 | | The expiry time is the number of minutes that each reset token will be 84 | | considered valid. This security feature keeps tokens short-lived so 85 | | they have less time to be guessed. You may change this as needed. 86 | | 87 | | The throttle setting is the number of seconds a user must wait before 88 | | generating more password reset tokens. This prevents the user from 89 | | quickly generating a very large amount of password reset tokens. 90 | | 91 | */ 92 | 93 | 'passwords' => [ 94 | 'users' => [ 95 | 'provider' => 'users', 96 | 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), 97 | 'expire' => 60, 98 | 'throttle' => 60, 99 | ], 100 | ], 101 | 102 | /* 103 | |-------------------------------------------------------------------------- 104 | | Password Confirmation Timeout 105 | |-------------------------------------------------------------------------- 106 | | 107 | | Here you may define the amount of seconds before a password confirmation 108 | | window expires and users are asked to re-enter their password via the 109 | | confirmation screen. By default, the timeout lasts for three hours. 110 | | 111 | */ 112 | 113 | 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), 114 | 115 | ]; 116 | -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- 1 | env('APP_NAME', 'Laravel'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Application Environment 21 | |-------------------------------------------------------------------------- 22 | | 23 | | This value determines the "environment" your application is currently 24 | | running in. This may determine how you prefer to configure various 25 | | services the application utilizes. Set this in your ".env" file. 26 | | 27 | */ 28 | 29 | 'env' => env('APP_ENV', 'production'), 30 | 31 | /* 32 | |-------------------------------------------------------------------------- 33 | | Application Debug Mode 34 | |-------------------------------------------------------------------------- 35 | | 36 | | When your application is in debug mode, detailed error messages with 37 | | stack traces will be shown on every error that occurs within your 38 | | application. If disabled, a simple generic error page is shown. 39 | | 40 | */ 41 | 42 | 'debug' => (bool) env('APP_DEBUG', false), 43 | 44 | /* 45 | |-------------------------------------------------------------------------- 46 | | Application URL 47 | |-------------------------------------------------------------------------- 48 | | 49 | | This URL is used by the console to properly generate URLs when using 50 | | the Artisan command line tool. You should set this to the root of 51 | | the application so that it's available within Artisan commands. 52 | | 53 | */ 54 | 55 | 'url' => env('APP_URL', 'http://localhost'), 56 | 57 | /* 58 | |-------------------------------------------------------------------------- 59 | | Application Timezone 60 | |-------------------------------------------------------------------------- 61 | | 62 | | Here you may specify the default timezone for your application, which 63 | | will be used by the PHP date and date-time functions. The timezone 64 | | is set to "UTC" by default as it is suitable for most use cases. 65 | | 66 | */ 67 | 68 | 'timezone' => env('APP_TIMEZONE', 'UTC'), 69 | 70 | /* 71 | |-------------------------------------------------------------------------- 72 | | Application Locale Configuration 73 | |-------------------------------------------------------------------------- 74 | | 75 | | The application locale determines the default locale that will be used 76 | | by Laravel's translation / localization methods. This option can be 77 | | set to any locale for which you plan to have translation strings. 78 | | 79 | */ 80 | 81 | 'locale' => env('APP_LOCALE', 'en'), 82 | 83 | 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), 84 | 85 | 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), 86 | 87 | /* 88 | |-------------------------------------------------------------------------- 89 | | Encryption Key 90 | |-------------------------------------------------------------------------- 91 | | 92 | | This key is utilized by Laravel's encryption services and should be set 93 | | to a random, 32 character string to ensure that all encrypted values 94 | | are secure. You should do this prior to deploying the application. 95 | | 96 | */ 97 | 98 | 'cipher' => 'AES-256-CBC', 99 | 100 | 'key' => env('APP_KEY'), 101 | 102 | 'previous_keys' => [ 103 | ...array_filter( 104 | explode(',', env('APP_PREVIOUS_KEYS', '')) 105 | ), 106 | ], 107 | 108 | /* 109 | |-------------------------------------------------------------------------- 110 | | Maintenance Mode Driver 111 | |-------------------------------------------------------------------------- 112 | | 113 | | These configuration options determine the driver used to determine and 114 | | manage Laravel's "maintenance mode" status. The "cache" driver will 115 | | allow maintenance mode to be controlled across multiple machines. 116 | | 117 | | Supported drivers: "file", "cache" 118 | | 119 | */ 120 | 121 | 'maintenance' => [ 122 | 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), 123 | 'store' => env('APP_MAINTENANCE_STORE', 'database'), 124 | ], 125 | 126 | ]; 127 | -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- 1 | env('LOG_CHANNEL', 'stack'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Deprecations Log Channel 26 | |-------------------------------------------------------------------------- 27 | | 28 | | This option controls the log channel that should be used to log warnings 29 | | regarding deprecated PHP and library features. This allows you to get 30 | | your application ready for upcoming major versions of dependencies. 31 | | 32 | */ 33 | 34 | 'deprecations' => [ 35 | 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 36 | 'trace' => env('LOG_DEPRECATIONS_TRACE', false), 37 | ], 38 | 39 | /* 40 | |-------------------------------------------------------------------------- 41 | | Log Channels 42 | |-------------------------------------------------------------------------- 43 | | 44 | | Here you may configure the log channels for your application. Laravel 45 | | utilizes the Monolog PHP logging library, which includes a variety 46 | | of powerful log handlers and formatters that you're free to use. 47 | | 48 | | Available drivers: "single", "daily", "slack", "syslog", 49 | | "errorlog", "monolog", "custom", "stack" 50 | | 51 | */ 52 | 53 | 'channels' => [ 54 | 55 | 'stack' => [ 56 | 'driver' => 'stack', 57 | 'channels' => explode(',', env('LOG_STACK', 'single')), 58 | 'ignore_exceptions' => false, 59 | ], 60 | 61 | 'single' => [ 62 | 'driver' => 'single', 63 | 'path' => storage_path('logs/laravel.log'), 64 | 'level' => env('LOG_LEVEL', 'debug'), 65 | 'replace_placeholders' => true, 66 | ], 67 | 68 | 'daily' => [ 69 | 'driver' => 'daily', 70 | 'path' => storage_path('logs/laravel.log'), 71 | 'level' => env('LOG_LEVEL', 'debug'), 72 | 'days' => env('LOG_DAILY_DAYS', 14), 73 | 'replace_placeholders' => true, 74 | ], 75 | 76 | 'slack' => [ 77 | 'driver' => 'slack', 78 | 'url' => env('LOG_SLACK_WEBHOOK_URL'), 79 | 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), 80 | 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), 81 | 'level' => env('LOG_LEVEL', 'critical'), 82 | 'replace_placeholders' => true, 83 | ], 84 | 85 | 'papertrail' => [ 86 | 'driver' => 'monolog', 87 | 'level' => env('LOG_LEVEL', 'debug'), 88 | 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), 89 | 'handler_with' => [ 90 | 'host' => env('PAPERTRAIL_URL'), 91 | 'port' => env('PAPERTRAIL_PORT'), 92 | 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), 93 | ], 94 | 'processors' => [PsrLogMessageProcessor::class], 95 | ], 96 | 97 | 'stderr' => [ 98 | 'driver' => 'monolog', 99 | 'level' => env('LOG_LEVEL', 'debug'), 100 | 'handler' => StreamHandler::class, 101 | 'formatter' => env('LOG_STDERR_FORMATTER'), 102 | 'with' => [ 103 | 'stream' => 'php://stderr', 104 | ], 105 | 'processors' => [PsrLogMessageProcessor::class], 106 | ], 107 | 108 | 'syslog' => [ 109 | 'driver' => 'syslog', 110 | 'level' => env('LOG_LEVEL', 'debug'), 111 | 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), 112 | 'replace_placeholders' => true, 113 | ], 114 | 115 | 'errorlog' => [ 116 | 'driver' => 'errorlog', 117 | 'level' => env('LOG_LEVEL', 'debug'), 118 | 'replace_placeholders' => true, 119 | ], 120 | 121 | 'null' => [ 122 | 'driver' => 'monolog', 123 | 'handler' => NullHandler::class, 124 | ], 125 | 126 | 'emergency' => [ 127 | 'path' => storage_path('logs/laravel.log'), 128 | ], 129 | 130 | ], 131 | 132 | ]; 133 | -------------------------------------------------------------------------------- /tools/rector/composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "f7197da0c35b0ed2cce3dd44c5332124", 8 | "packages": [], 9 | "packages-dev": [ 10 | { 11 | "name": "phpstan/phpstan", 12 | "version": "2.1.32", 13 | "dist": { 14 | "type": "zip", 15 | "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e126cad1e30a99b137b8ed75a85a676450ebb227", 16 | "reference": "e126cad1e30a99b137b8ed75a85a676450ebb227", 17 | "shasum": "" 18 | }, 19 | "require": { 20 | "php": "^7.4|^8.0" 21 | }, 22 | "conflict": { 23 | "phpstan/phpstan-shim": "*" 24 | }, 25 | "bin": [ 26 | "phpstan", 27 | "phpstan.phar" 28 | ], 29 | "type": "library", 30 | "autoload": { 31 | "files": [ 32 | "bootstrap.php" 33 | ] 34 | }, 35 | "notification-url": "https://packagist.org/downloads/", 36 | "license": [ 37 | "MIT" 38 | ], 39 | "description": "PHPStan - PHP Static Analysis Tool", 40 | "keywords": [ 41 | "dev", 42 | "static analysis" 43 | ], 44 | "support": { 45 | "docs": "https://phpstan.org/user-guide/getting-started", 46 | "forum": "https://github.com/phpstan/phpstan/discussions", 47 | "issues": "https://github.com/phpstan/phpstan/issues", 48 | "security": "https://github.com/phpstan/phpstan/security/policy", 49 | "source": "https://github.com/phpstan/phpstan-src" 50 | }, 51 | "funding": [ 52 | { 53 | "url": "https://github.com/ondrejmirtes", 54 | "type": "github" 55 | }, 56 | { 57 | "url": "https://github.com/phpstan", 58 | "type": "github" 59 | } 60 | ], 61 | "time": "2025-11-11T15:18:17+00:00" 62 | }, 63 | { 64 | "name": "rector/rector", 65 | "version": "2.2.8", 66 | "source": { 67 | "type": "git", 68 | "url": "https://github.com/rectorphp/rector.git", 69 | "reference": "303aa811649ccd1d32e51e62d5c85949d01b5f1b" 70 | }, 71 | "dist": { 72 | "type": "zip", 73 | "url": "https://api.github.com/repos/rectorphp/rector/zipball/303aa811649ccd1d32e51e62d5c85949d01b5f1b", 74 | "reference": "303aa811649ccd1d32e51e62d5c85949d01b5f1b", 75 | "shasum": "" 76 | }, 77 | "require": { 78 | "php": "^7.4|^8.0", 79 | "phpstan/phpstan": "^2.1.32" 80 | }, 81 | "conflict": { 82 | "rector/rector-doctrine": "*", 83 | "rector/rector-downgrade-php": "*", 84 | "rector/rector-phpunit": "*", 85 | "rector/rector-symfony": "*" 86 | }, 87 | "suggest": { 88 | "ext-dom": "To manipulate phpunit.xml via the custom-rule command" 89 | }, 90 | "bin": [ 91 | "bin/rector" 92 | ], 93 | "type": "library", 94 | "autoload": { 95 | "files": [ 96 | "bootstrap.php" 97 | ] 98 | }, 99 | "notification-url": "https://packagist.org/downloads/", 100 | "license": [ 101 | "MIT" 102 | ], 103 | "description": "Instant Upgrade and Automated Refactoring of any PHP code", 104 | "homepage": "https://getrector.com/", 105 | "keywords": [ 106 | "automation", 107 | "dev", 108 | "migration", 109 | "refactoring" 110 | ], 111 | "support": { 112 | "issues": "https://github.com/rectorphp/rector/issues", 113 | "source": "https://github.com/rectorphp/rector/tree/2.2.8" 114 | }, 115 | "funding": [ 116 | { 117 | "url": "https://github.com/tomasvotruba", 118 | "type": "github" 119 | } 120 | ], 121 | "time": "2025-11-12T18:38:00+00:00" 122 | } 123 | ], 124 | "aliases": [], 125 | "minimum-stability": "stable", 126 | "stability-flags": {}, 127 | "prefer-stable": false, 128 | "prefer-lowest": false, 129 | "platform": {}, 130 | "platform-dev": {}, 131 | "plugin-api-version": "2.6.0" 132 | } 133 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Laravel 12 blank project 4 | 5 | --- 6 | | Included | 7 | |------------------| 8 | | ✅ Basic setting | 9 | | ✅ Phpstan | 10 | | ✅ PHP CS Fixer | 11 | | ✅ Rector | 12 | | ✅ TypeScript | 13 | | ✅ Xdebug | 14 | | ✅ Docker | 15 | | ✅ GitHub actions | 16 | | ✅ Makefile | 17 | 18 | ## Installation 19 | - Run the git clone command `git clone git@github.com:dev-lnk/laravel-blank.git .`. 20 | - Copy the `.env.example` file and rename it to `.env`, customize the `#Docker` section to your needs. 21 | - Run the command `make build`, and then `make install`. 22 | - Check the application's operation using the link `http://localhost` or `http://localhost:${APP_WEB_PORT}`. 23 | - Run stat analysis and tests using the command `make test`. 24 | 25 | ## About 26 | This is a blank Laravel 12 project set up to get started with development. What the setup includes: 27 | - Configured docker for local development. 28 | - Middleware is configured in a separate file. 29 | ```php 30 | namespace App\Http\Middleware; 31 | 32 | use Illuminate\Foundation\Configuration\Middleware; 33 | 34 | class MiddlewareHandler 35 | { 36 | protected array $aliases = [ 37 | //'auth' => AuthMiddleware::class 38 | ]; 39 | 40 | public function __invoke(Middleware $middleware): Middleware 41 | { 42 | if ($this->aliases) { 43 | $middleware->alias($this->aliases); 44 | } 45 | return $middleware; 46 | } 47 | } 48 | ``` 49 | - Cron jobs are configured in a separate file. 50 | ```php 51 | namespace App\Console; 52 | 53 | use Illuminate\Console\Scheduling\Schedule; 54 | 55 | class ScheduleHandler 56 | { 57 | public function __invoke(Schedule $schedule): void 58 | { 59 | //$schedule->command(HealthCommand::class)->hourly(); 60 | } 61 | } 62 | ``` 63 | - Exception handling is configured in a separate file 64 | ```php 65 | namespace App\Exceptions; 66 | 67 | use Illuminate\Foundation\Configuration\Exceptions; 68 | use Illuminate\Http\JsonResponse; 69 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; 70 | use Illuminate\Http\Request; 71 | 72 | class ExceptionsHandler 73 | { 74 | public function __invoke(Exceptions $exceptions): Exceptions 75 | { 76 | $exceptions->renderable( 77 | function (NotFoundHttpException $e, ?Request $request = null) { 78 | if($request?->is('api/*')) { 79 | return $this->jsonResponse($e->getStatusCode()); 80 | } 81 | return response()->view('errors.404', status: $e->getStatusCode()); 82 | } 83 | ); 84 | 85 | return $exceptions; 86 | } 87 | 88 | private function jsonResponse(int $code): JsonResponse 89 | { 90 | return response()->json([ 91 | 'error' => "HTTP error: $code" 92 | ])->setStatusCode($code); 93 | } 94 | } 95 | ``` 96 | - Configured tests. 97 | ```php 98 | namespace Tests; 99 | 100 | use Illuminate\Foundation\Testing\RefreshDatabase; 101 | use Illuminate\Foundation\Testing\TestCase as BaseTestCase; 102 | use Illuminate\Support\Facades\Artisan; 103 | use Illuminate\Support\Facades\Http; 104 | use Illuminate\Support\Facades\Notification; 105 | 106 | abstract class TestCase extends BaseTestCase 107 | { 108 | use RefreshDatabase; 109 | 110 | protected bool $seed = true; 111 | 112 | protected function setUp(): void 113 | { 114 | parent::setUp(); 115 | 116 | Artisan::call('optimize:clear'); 117 | 118 | Notification::fake(); 119 | 120 | Http::preventStrayRequests(); 121 | 122 | $this->withoutVite(); 123 | } 124 | } 125 | ``` 126 | - Added RouteServiceProvider 127 | ```php 128 | namespace App\Providers; 129 | 130 | use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; 131 | use Illuminate\Support\Facades\Route; 132 | 133 | class RouteServiceProvider extends ServiceProvider 134 | { 135 | public function boot(): void 136 | { 137 | // $this->routes(function () { 138 | // Route::middleware(['web', 'app.auth']) 139 | // ->namespace($this->namespace) 140 | // ->prefix('my') 141 | // ->group(base_path('routes/my.php')); 142 | // }); 143 | } 144 | } 145 | ``` 146 | - Installed and configured phpstan (max level). 147 | - Installed and configured TypeScript, used instead of JavaScript. 148 | 149 | The final `bootstrap/app.php` file looks like this: 150 | 151 | ```php 152 | withMiddleware(new MiddlewareHandler()) 161 | ->withSchedule(new ScheduleHandler()) 162 | ->withExceptions(new ExceptionsHandler()) 163 | ->withRouting( 164 | web: __DIR__.'/../routes/web.php', 165 | commands: __DIR__.'/../routes/console.php', 166 | health: '/up', 167 | ) 168 | ->create(); 169 | ``` 170 | 171 | ## Docker 172 | 173 | ### Images 174 | 175 | - nginx:1.29-alpine 176 | - php:8.4-fpm (with xdebug) 177 | - mysql:9.4 178 | - redis:8.2.0-alpine 179 | - node:24.5-alpine3.22 180 | 181 | ### Other 182 | - Many commands to speed up development and work with docker can be found in the `Makefile` 183 | - If you don't need Docker, remove: `/docker`, `docker-compose.yml`, `Makefile`. Convert `.env` to standard Laravel form 184 | - To launch containers with `worker` and `scheduler`, delete comments on the corresponding blocks in `docker-compose.yml` -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | @yield('title') 8 | 9 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | @yield('code') 25 | 26 | 27 | 28 | @yield('message') 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | env('DB_CONNECTION', 'sqlite'), 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Database Connections 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Below are all of the database connections defined for your application. 27 | | An example configuration is provided for each database system which 28 | | is supported by Laravel. You're free to add / remove connections. 29 | | 30 | */ 31 | 32 | 'connections' => [ 33 | 34 | 'sqlite' => [ 35 | 'driver' => 'sqlite', 36 | 'url' => env('DB_URL'), 37 | 'database' => env('DB_DATABASE', database_path('database.sqlite')), 38 | 'prefix' => '', 39 | 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), 40 | 'busy_timeout' => null, 41 | 'journal_mode' => null, 42 | 'synchronous' => null, 43 | ], 44 | 45 | 'mysql' => [ 46 | 'driver' => 'mysql', 47 | 'url' => env('DB_URL'), 48 | 'host' => env('DB_HOST', '127.0.0.1'), 49 | 'port' => env('DB_PORT', '3306'), 50 | 'database' => env('DB_DATABASE', 'laravel'), 51 | 'username' => env('DB_USERNAME', 'root'), 52 | 'password' => env('DB_PASSWORD', ''), 53 | 'unix_socket' => env('DB_SOCKET', ''), 54 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 55 | 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 56 | 'prefix' => '', 57 | 'prefix_indexes' => true, 58 | 'strict' => true, 59 | 'engine' => null, 60 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 61 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 62 | ]) : [], 63 | ], 64 | 65 | 'mariadb' => [ 66 | 'driver' => 'mariadb', 67 | 'url' => env('DB_URL'), 68 | 'host' => env('DB_HOST', '127.0.0.1'), 69 | 'port' => env('DB_PORT', '3306'), 70 | 'database' => env('DB_DATABASE', 'laravel'), 71 | 'username' => env('DB_USERNAME', 'root'), 72 | 'password' => env('DB_PASSWORD', ''), 73 | 'unix_socket' => env('DB_SOCKET', ''), 74 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 75 | 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 76 | 'prefix' => '', 77 | 'prefix_indexes' => true, 78 | 'strict' => true, 79 | 'engine' => null, 80 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 81 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 82 | ]) : [], 83 | ], 84 | 85 | 'pgsql' => [ 86 | 'driver' => 'pgsql', 87 | 'url' => env('DB_URL'), 88 | 'host' => env('DB_HOST', '127.0.0.1'), 89 | 'port' => env('DB_PORT', '5432'), 90 | 'database' => env('DB_DATABASE', 'laravel'), 91 | 'username' => env('DB_USERNAME', 'root'), 92 | 'password' => env('DB_PASSWORD', ''), 93 | 'charset' => env('DB_CHARSET', 'utf8'), 94 | 'prefix' => '', 95 | 'prefix_indexes' => true, 96 | 'search_path' => 'public', 97 | 'sslmode' => 'prefer', 98 | ], 99 | 100 | 'sqlsrv' => [ 101 | 'driver' => 'sqlsrv', 102 | 'url' => env('DB_URL'), 103 | 'host' => env('DB_HOST', 'localhost'), 104 | 'port' => env('DB_PORT', '1433'), 105 | 'database' => env('DB_DATABASE', 'laravel'), 106 | 'username' => env('DB_USERNAME', 'root'), 107 | 'password' => env('DB_PASSWORD', ''), 108 | 'charset' => env('DB_CHARSET', 'utf8'), 109 | 'prefix' => '', 110 | 'prefix_indexes' => true, 111 | // 'encrypt' => env('DB_ENCRYPT', 'yes'), 112 | // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), 113 | ], 114 | 115 | ], 116 | 117 | /* 118 | |-------------------------------------------------------------------------- 119 | | Migration Repository Table 120 | |-------------------------------------------------------------------------- 121 | | 122 | | This table keeps track of all the migrations that have already run for 123 | | your application. Using this information, we can determine which of 124 | | the migrations on disk haven't actually been run on the database. 125 | | 126 | */ 127 | 128 | 'migrations' => [ 129 | 'table' => 'migrations', 130 | 'update_date_on_publish' => true, 131 | ], 132 | 133 | /* 134 | |-------------------------------------------------------------------------- 135 | | Redis Databases 136 | |-------------------------------------------------------------------------- 137 | | 138 | | Redis is an open source, fast, and advanced key-value store that also 139 | | provides a richer body of commands than a typical key-value system 140 | | such as Memcached. You may define your connection settings here. 141 | | 142 | */ 143 | 144 | 'redis' => [ 145 | 146 | 'client' => env('REDIS_CLIENT', 'phpredis'), 147 | 148 | 'options' => [ 149 | 'cluster' => env('REDIS_CLUSTER', 'redis'), 150 | 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), 151 | ], 152 | 153 | 'default' => [ 154 | 'url' => env('REDIS_URL'), 155 | 'host' => env('REDIS_HOST', '127.0.0.1'), 156 | 'username' => env('REDIS_USERNAME'), 157 | 'password' => env('REDIS_PASSWORD'), 158 | 'port' => env('REDIS_PORT', '6379'), 159 | 'database' => env('REDIS_DB', '0'), 160 | ], 161 | 162 | 'cache' => [ 163 | 'url' => env('REDIS_URL'), 164 | 'host' => env('REDIS_HOST', '127.0.0.1'), 165 | 'username' => env('REDIS_USERNAME'), 166 | 'password' => env('REDIS_PASSWORD'), 167 | 'port' => env('REDIS_PORT', '6379'), 168 | 'database' => env('REDIS_CACHE_DB', '1'), 169 | ], 170 | 171 | ], 172 | 173 | ]; 174 | -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- 1 | env('SESSION_DRIVER', 'database'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Session Lifetime 26 | |-------------------------------------------------------------------------- 27 | | 28 | | Here you may specify the number of minutes that you wish the session 29 | | to be allowed to remain idle before it expires. If you want them 30 | | to expire immediately when the browser is closed then you may 31 | | indicate that via the expire_on_close configuration option. 32 | | 33 | */ 34 | 35 | 'lifetime' => env('SESSION_LIFETIME', 120), 36 | 37 | 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), 38 | 39 | /* 40 | |-------------------------------------------------------------------------- 41 | | Session Encryption 42 | |-------------------------------------------------------------------------- 43 | | 44 | | This option allows you to easily specify that all of your session data 45 | | should be encrypted before it's stored. All encryption is performed 46 | | automatically by Laravel and you may use the session like normal. 47 | | 48 | */ 49 | 50 | 'encrypt' => env('SESSION_ENCRYPT', false), 51 | 52 | /* 53 | |-------------------------------------------------------------------------- 54 | | Session File Location 55 | |-------------------------------------------------------------------------- 56 | | 57 | | When utilizing the "file" session driver, the session files are placed 58 | | on disk. The default storage location is defined here; however, you 59 | | are free to provide another location where they should be stored. 60 | | 61 | */ 62 | 63 | 'files' => storage_path('framework/sessions'), 64 | 65 | /* 66 | |-------------------------------------------------------------------------- 67 | | Session Database Connection 68 | |-------------------------------------------------------------------------- 69 | | 70 | | When using the "database" or "redis" session drivers, you may specify a 71 | | connection that should be used to manage these sessions. This should 72 | | correspond to a connection in your database configuration options. 73 | | 74 | */ 75 | 76 | 'connection' => env('SESSION_CONNECTION'), 77 | 78 | /* 79 | |-------------------------------------------------------------------------- 80 | | Session Database Table 81 | |-------------------------------------------------------------------------- 82 | | 83 | | When using the "database" session driver, you may specify the table to 84 | | be used to store sessions. Of course, a sensible default is defined 85 | | for you; however, you're welcome to change this to another table. 86 | | 87 | */ 88 | 89 | 'table' => env('SESSION_TABLE', 'sessions'), 90 | 91 | /* 92 | |-------------------------------------------------------------------------- 93 | | Session Cache Store 94 | |-------------------------------------------------------------------------- 95 | | 96 | | When using one of the framework's cache driven session backends, you may 97 | | define the cache store which should be used to store the session data 98 | | between requests. This must match one of your defined cache stores. 99 | | 100 | | Affects: "apc", "dynamodb", "memcached", "redis" 101 | | 102 | */ 103 | 104 | 'store' => env('SESSION_STORE'), 105 | 106 | /* 107 | |-------------------------------------------------------------------------- 108 | | Session Sweeping Lottery 109 | |-------------------------------------------------------------------------- 110 | | 111 | | Some session drivers must manually sweep their storage location to get 112 | | rid of old sessions from storage. Here are the chances that it will 113 | | happen on a given request. By default, the odds are 2 out of 100. 114 | | 115 | */ 116 | 117 | 'lottery' => [2, 100], 118 | 119 | /* 120 | |-------------------------------------------------------------------------- 121 | | Session Cookie Name 122 | |-------------------------------------------------------------------------- 123 | | 124 | | Here you may change the name of the session cookie that is created by 125 | | the framework. Typically, you should not need to change this value 126 | | since doing so does not grant a meaningful security improvement. 127 | | 128 | */ 129 | 130 | 'cookie' => env( 131 | 'SESSION_COOKIE', 132 | Str::slug(env('APP_NAME', 'laravel'), '_').'_session' 133 | ), 134 | 135 | /* 136 | |-------------------------------------------------------------------------- 137 | | Session Cookie Path 138 | |-------------------------------------------------------------------------- 139 | | 140 | | The session cookie path determines the path for which the cookie will 141 | | be regarded as available. Typically, this will be the root path of 142 | | your application, but you're free to change this when necessary. 143 | | 144 | */ 145 | 146 | 'path' => env('SESSION_PATH', '/'), 147 | 148 | /* 149 | |-------------------------------------------------------------------------- 150 | | Session Cookie Domain 151 | |-------------------------------------------------------------------------- 152 | | 153 | | This value determines the domain and subdomains the session cookie is 154 | | available to. By default, the cookie will be available to the root 155 | | domain and all subdomains. Typically, this shouldn't be changed. 156 | | 157 | */ 158 | 159 | 'domain' => env('SESSION_DOMAIN'), 160 | 161 | /* 162 | |-------------------------------------------------------------------------- 163 | | HTTPS Only Cookies 164 | |-------------------------------------------------------------------------- 165 | | 166 | | By setting this option to true, session cookies will only be sent back 167 | | to the server if the browser has a HTTPS connection. This will keep 168 | | the cookie from being sent to you when it can't be done securely. 169 | | 170 | */ 171 | 172 | 'secure' => env('SESSION_SECURE_COOKIE'), 173 | 174 | /* 175 | |-------------------------------------------------------------------------- 176 | | HTTP Access Only 177 | |-------------------------------------------------------------------------- 178 | | 179 | | Setting this value to true will prevent JavaScript from accessing the 180 | | value of the cookie and the cookie will only be accessible through 181 | | the HTTP protocol. It's unlikely you should disable this option. 182 | | 183 | */ 184 | 185 | 'http_only' => env('SESSION_HTTP_ONLY', true), 186 | 187 | /* 188 | |-------------------------------------------------------------------------- 189 | | Same-Site Cookies 190 | |-------------------------------------------------------------------------- 191 | | 192 | | This option determines how your cookies behave when cross-site requests 193 | | take place, and can be used to mitigate CSRF attacks. By default, we 194 | | will set this value to "lax" to permit secure cross-site requests. 195 | | 196 | | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value 197 | | 198 | | Supported: "lax", "strict", "none", null 199 | | 200 | */ 201 | 202 | 'same_site' => env('SESSION_SAME_SITE', 'lax'), 203 | 204 | /* 205 | |-------------------------------------------------------------------------- 206 | | Partitioned Cookies 207 | |-------------------------------------------------------------------------- 208 | | 209 | | Setting this value to true will tie the cookie to the top-level site for 210 | | a cross-site context. Partitioned cookies are accepted by the browser 211 | | when flagged "secure" and the Same-Site attribute is set to "none". 212 | | 213 | */ 214 | 215 | 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), 216 | 217 | ]; 218 | -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- 1 | env('DEBUGBAR_ENABLED', null), 18 | 'hide_empty_tabs' => true, // Hide tabs until they have content 19 | 'except' => [ 20 | 'telescope*', 21 | 'horizon*', 22 | ], 23 | 24 | /* 25 | |-------------------------------------------------------------------------- 26 | | Storage settings 27 | |-------------------------------------------------------------------------- 28 | | 29 | | Debugbar stores data for session/ajax requests. 30 | | You can disable this, so the debugbar stores data in headers/session, 31 | | but this can cause problems with large data collectors. 32 | | By default, file storage (in the storage folder) is used. Redis and PDO 33 | | can also be used. For PDO, run the package migrations first. 34 | | 35 | | Warning: Enabling storage.open will allow everyone to access previous 36 | | request, do not enable open storage in publicly available environments! 37 | | Specify a callback if you want to limit based on IP or authentication. 38 | | Leaving it to null will allow localhost only. 39 | */ 40 | 'storage' => [ 41 | 'enabled' => true, 42 | 'open' => env('DEBUGBAR_OPEN_STORAGE'), // bool/callback. 43 | 'driver' => 'file', // redis, file, pdo, socket, custom 44 | 'path' => storage_path('debugbar'), // For file driver 45 | 'connection' => null, // Leave null for default connection (Redis/PDO) 46 | 'provider' => '', // Instance of StorageInterface for custom driver 47 | 'hostname' => '127.0.0.1', // Hostname to use with the "socket" driver 48 | 'port' => 2304, // Port to use with the "socket" driver 49 | ], 50 | 51 | /* 52 | |-------------------------------------------------------------------------- 53 | | Editor 54 | |-------------------------------------------------------------------------- 55 | | 56 | | Choose your preferred editor to use when clicking file name. 57 | | 58 | | Supported: "phpstorm", "vscode", "vscode-insiders", "vscode-remote", 59 | | "vscode-insiders-remote", "vscodium", "textmate", "emacs", 60 | | "sublime", "atom", "nova", "macvim", "idea", "netbeans", 61 | | "xdebug", "espresso" 62 | | 63 | */ 64 | 65 | 'editor' => env('DEBUGBAR_EDITOR') ?: env('IGNITION_EDITOR', 'phpstorm'), 66 | 67 | /* 68 | |-------------------------------------------------------------------------- 69 | | Remote Path Mapping 70 | |-------------------------------------------------------------------------- 71 | | 72 | | If you are using a remote dev server, like Laravel Homestead, Docker, or 73 | | even a remote VPS, it will be necessary to specify your path mapping. 74 | | 75 | | Leaving one, or both of these, empty or null will not trigger the remote 76 | | URL changes and Debugbar will treat your editor links as local files. 77 | | 78 | | "remote_sites_path" is an absolute base path for your sites or projects 79 | | in Homestead, Vagrant, Docker, or another remote development server. 80 | | 81 | | Example value: "/home/vagrant/Code" 82 | | 83 | | "local_sites_path" is an absolute base path for your sites or projects 84 | | on your local computer where your IDE or code editor is running on. 85 | | 86 | | Example values: "/Users//Code", "C:\Users\\Documents\Code" 87 | | 88 | */ 89 | 90 | 'remote_sites_path' => env('DEBUGBAR_REMOTE_SITES_PATH'), 91 | 'local_sites_path' => env('DEBUGBAR_LOCAL_SITES_PATH', env('IGNITION_LOCAL_SITES_PATH')), 92 | 93 | /* 94 | |-------------------------------------------------------------------------- 95 | | Vendors 96 | |-------------------------------------------------------------------------- 97 | | 98 | | Vendor files are included by default, but can be set to false. 99 | | This can also be set to 'js' or 'css', to only include javascript or css vendor files. 100 | | Vendor files are for css: font-awesome (including fonts) and highlight.js (css files) 101 | | and for js: jquery and highlight.js 102 | | So if you want syntax highlighting, set it to true. 103 | | jQuery is set to not conflict with existing jQuery scripts. 104 | | 105 | */ 106 | 107 | 'include_vendors' => true, 108 | 109 | /* 110 | |-------------------------------------------------------------------------- 111 | | Capture Ajax Requests 112 | |-------------------------------------------------------------------------- 113 | | 114 | | The Debugbar can capture Ajax requests and display them. If you don't want this (ie. because of errors), 115 | | you can use this option to disable sending the data through the headers. 116 | | 117 | | Optionally, you can also send ServerTiming headers on ajax requests for the Chrome DevTools. 118 | | 119 | | Note for your request to be identified as ajax requests they must either send the header 120 | | X-Requested-With with the value XMLHttpRequest (most JS libraries send this), or have application/json as a Accept header. 121 | | 122 | | By default `ajax_handler_auto_show` is set to true allowing ajax requests to be shown automatically in the Debugbar. 123 | | Changing `ajax_handler_auto_show` to false will prevent the Debugbar from reloading. 124 | | 125 | | You can defer loading the dataset, so it will be loaded with ajax after the request is done. (Experimental) 126 | */ 127 | 128 | 'capture_ajax' => true, 129 | 'add_ajax_timing' => false, 130 | 'ajax_handler_auto_show' => true, 131 | 'ajax_handler_enable_tab' => true, 132 | 'defer_datasets' => false, 133 | /* 134 | |-------------------------------------------------------------------------- 135 | | Custom Error Handler for Deprecated warnings 136 | |-------------------------------------------------------------------------- 137 | | 138 | | When enabled, the Debugbar shows deprecated warnings for Symfony components 139 | | in the Messages tab. 140 | | 141 | */ 142 | 'error_handler' => false, 143 | 144 | /* 145 | |-------------------------------------------------------------------------- 146 | | Clockwork integration 147 | |-------------------------------------------------------------------------- 148 | | 149 | | The Debugbar can emulate the Clockwork headers, so you can use the Chrome 150 | | Extension, without the server-side code. It uses Debugbar collectors instead. 151 | | 152 | */ 153 | 'clockwork' => false, 154 | 155 | /* 156 | |-------------------------------------------------------------------------- 157 | | DataCollectors 158 | |-------------------------------------------------------------------------- 159 | | 160 | | Enable/disable DataCollectors 161 | | 162 | */ 163 | 164 | 'collectors' => [ 165 | 'phpinfo' => false, // Php version 166 | 'messages' => true, // Messages 167 | 'time' => true, // Time Datalogger 168 | 'memory' => true, // Memory usage 169 | 'exceptions' => true, // Exception displayer 170 | 'log' => true, // Logs from Monolog (merged in messages if enabled) 171 | 'db' => true, // Show database (PDO) queries and bindings 172 | 'views' => false, // Views with their data 173 | 'route' => false, // Current route information 174 | 'auth' => false, // Display Laravel authentication status 175 | 'gate' => true, // Display Laravel Gate checks 176 | 'session' => false, // Display session data 177 | 'symfony_request' => true, // Only one can be enabled.. 178 | 'mail' => true, // Catch mail messages 179 | 'laravel' => true, // Laravel version and environment 180 | 'events' => false, // All events fired 181 | 'default_request' => false, // Regular or special Symfony request logger 182 | 'logs' => false, // Add the latest log messages 183 | 'files' => false, // Show the included files 184 | 'config' => false, // Display config settings 185 | 'cache' => false, // Display cache events 186 | 'models' => true, // Display models 187 | 'livewire' => true, // Display Livewire (when available) 188 | 'jobs' => false, // Display dispatched jobs 189 | 'pennant' => false, // Display Pennant feature flags 190 | ], 191 | 192 | /* 193 | |-------------------------------------------------------------------------- 194 | | Extra options 195 | |-------------------------------------------------------------------------- 196 | | 197 | | Configure some DataCollectors 198 | | 199 | */ 200 | 201 | 'options' => [ 202 | 'time' => [ 203 | 'memory_usage' => false, // Calculated by subtracting memory start and end, it may be inaccurate 204 | ], 205 | 'messages' => [ 206 | 'trace' => true, // Trace the origin of the debug message 207 | 'capture_dumps' => false, // Capture laravel `dump();` as message 208 | ], 209 | 'memory' => [ 210 | 'reset_peak' => false, // run memory_reset_peak_usage before collecting 211 | 'with_baseline' => false, // Set boot memory usage as memory peak baseline 212 | 'precision' => 0, // Memory rounding precision 213 | ], 214 | 'auth' => [ 215 | 'show_name' => true, // Also show the users name/email in the debugbar 216 | 'show_guards' => true, // Show the guards that are used 217 | ], 218 | 'db' => [ 219 | 'with_params' => true, // Render SQL with the parameters substituted 220 | 'exclude_paths' => [ // Paths to exclude entirely from the collector 221 | // 'vendor/laravel/framework/src/Illuminate/Session', // Exclude sessions queries 222 | ], 223 | 'backtrace' => true, // Use a backtrace to find the origin of the query in your files. 224 | 'backtrace_exclude_paths' => [], // Paths to exclude from backtrace. (in addition to defaults) 225 | 'timeline' => false, // Add the queries to the timeline 226 | 'duration_background' => true, // Show shaded background on each query relative to how long it took to execute. 227 | 'explain' => [ // Show EXPLAIN output on queries 228 | 'enabled' => false, 229 | ], 230 | 'hints' => false, // Show hints for common mistakes 231 | 'show_copy' => true, // Show copy button next to the query, 232 | 'slow_threshold' => false, // Only track queries that last longer than this time in ms 233 | 'memory_usage' => false, // Show queries memory usage 234 | 'soft_limit' => 100, // After the soft limit, no parameters/backtrace are captured 235 | 'hard_limit' => 500, // After the hard limit, queries are ignored 236 | ], 237 | 'mail' => [ 238 | 'timeline' => true, // Add mails to the timeline 239 | 'show_body' => true, 240 | ], 241 | 'views' => [ 242 | 'timeline' => true, // Add the views to the timeline 243 | 'data' => false, // True for all data, 'keys' for only names, false for no parameters. 244 | 'group' => 50, // Group duplicate views. Pass value to auto-group, or true/false to force 245 | 'exclude_paths' => [ // Add the paths which you don't want to appear in the views 246 | 'vendor/filament' // Exclude Filament components by default 247 | ], 248 | ], 249 | 'route' => [ 250 | 'label' => true, // Show complete route on bar 251 | ], 252 | 'session' => [ 253 | 'hiddens' => [], // Hides sensitive values using array paths 254 | ], 255 | 'symfony_request' => [ 256 | 'label' => true, // Show route on bar 257 | 'hiddens' => [], // Hides sensitive values using array paths, example: request_request.password 258 | ], 259 | 'events' => [ 260 | 'data' => false, // Collect events data, listeners 261 | ], 262 | 'logs' => [ 263 | 'file' => null, 264 | ], 265 | 'cache' => [ 266 | 'values' => true, // Collect cache values 267 | ], 268 | ], 269 | 270 | /* 271 | |-------------------------------------------------------------------------- 272 | | Inject Debugbar in Response 273 | |-------------------------------------------------------------------------- 274 | | 275 | | Usually, the debugbar is added just before