forked from romanzipp/Laravel-Queue-Monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lando.yml
50 lines (50 loc) · 1 KB
/
.lando.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: laravel-queue-monitor
recipe: lemp
config:
php: "8.2"
composer_version: 2
webroot: public
services:
database:
type: mariadb
creds:
user: web
password: web
database: web
database-postgres:
type: postgres
creds:
database: web
tooling:
phpunit-mysql:
service: appserver
cmd: /app/vendor/bin/phpunit
env:
DB_CONNECTION: mysql
DB_HOST: database
DB_PORT: 3306
DB_DATABASE: web
DB_USERNAME: web
DB_PASSWORD: web
phpunit-postgres:
service: appserver
cmd: /app/vendor/bin/phpunit
env:
DB_CONNECTION: pgsql
DB_HOST: database-postgres
DB_PORT: 5432
DB_DATABASE: web
DB_USERNAME: postgres
DB_PASSWORD: ""
phpunit-sqlite:
service: appserver
cmd: /app/vendor/bin/phpunit
env:
DB_CONNECTION: sqlite
DB_DATABASE: "db.sqlite"
phpcs:
service: appserver
cmd: /app/vendor/bin/php-cs-fixer
phpstan:
service: appserver
cmd: /app/vendor/bin/phpstan