-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.lando.yml
57 lines (54 loc) · 1.19 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
51
52
53
54
55
56
57
name: phpgdimageprocessing
# See: https://docs.devwithlando.io/config/proxy.html
proxy:
appserver:
- web.phpgdimageprocessing.lndo.site
node:
- node.phpgdimageprocessing.lndo.site
mailhog:
- mail.phpgdimageprocessing.lndo.site
# See: https://docs.devwithlando.io/config/services.html
services:
appserver:
webroot: public
type: php:7.3
via: apache:2.4
ssl: false
xdebug: true
config:
php: private/config/php/php.ini
run_as_root:
- "chown www-data: -R /app"
node:
type: node
globals:
npm: "latest"
yarn: "latest"
gulp-cli: "latest"
mailhog:
type: mailhog
hogfrom:
- appserver
portforward: 1026
# See: https://docs.devwithlando.io/config/tooling.html
tooling:
node:
service: node
npm:
service: node
yarn:
service: node
gulp:
service: node
composer:
service: appserver
phpcs:
service: appserver
desription: "Analyze code against the PHP coding standards with PHP_CodeSniffer"
cmd:
- "vendor/bin/phpcs"
phpcbf:
service: appserver
desription: "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
cmd:
- "vendor/bin/phpcbf"