File tree Expand file tree Collapse file tree 6 files changed +95
-0
lines changed Expand file tree Collapse file tree 6 files changed +95
-0
lines changed Original file line number Diff line number Diff line change 11composer.phar
22/vendor /
33composer.lock
4+ .bash_history
Original file line number Diff line number Diff line change 1+ # Lando specific - uses user home directory to store Composer cache and other stuff
2+ # Helps to re-use Composer cache between projects.
3+ COMPOSER_HOME = /user/.composer
4+ # https://xdebug.org/docs/step_debug
5+ # https://xdebug.org/docs/step_debug#client_host
6+ # https://docs.lando.dev/config/php.html#configuration
7+ PHP_IDE_CONFIG = serverName=drupalauth.lndo.site
8+ # Ignore commands starting with space and duplicates.
9+ HISTCONTROL = ignoreboth
10+ HOME = /app
Original file line number Diff line number Diff line change 1+ name : drupalauth
2+
3+ services :
4+ php74 :
5+ type : php:7.4
6+ via : cli
7+ xdebug : " off"
8+ composer_version : 2
9+ php80 :
10+ type : php:8.0
11+ via : cli
12+ xdebug : " off"
13+ composer_version : 2
14+ php81 :
15+ type : php:8.1
16+ via : cli
17+ xdebug : " off"
18+ composer_version : 2
19+ php82 :
20+ type : php:8.2
21+ via : cli
22+ xdebug : " off"
23+ composer_version : 2
24+
25+
26+
27+
28+ env_file :
29+ - .lando.env
30+
31+ tooling :
32+ style-lint :
33+ cmd : ./scripts/style-lint.sh
34+ service : :service
35+ options :
36+ service :
37+ default : php74
38+ describe : Run phpcs in different service
39+ alias :
40+ - s
41+ style-fix :
42+ cmd : ./scripts/style-fix.sh
43+ service : :service
44+ options :
45+ service :
46+ default : php74
47+ describe : Run phpcs in different service
48+ alias :
49+ - s
50+ phpunit :
51+ cmd : ./scripts/phpunit.sh
52+ service : :service
53+ options :
54+ service :
55+ default : php74
56+ describe : Run phpunit in different service
57+ alias :
58+ - s
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ php -v
4+ rm -rf ./vendor composer.lock
5+ composer install
6+
7+ ./vendor/bin/phpunit
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ rm -rf ./vendor composer.lock
4+ composer install
5+
6+ ./vendor/bin/phpcbf
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ rm -rf ./vendor composer.lock
4+ composer install
5+
6+ ./vendor/bin/phpcs
7+
8+ # lando phpunit -s php80
9+ # lando style-lint -s php80
10+ # lando phpunit -s php81
11+ # lando style-lint -s php81
12+ # lando phpunit -s php82
13+ # lando style-lint -s php82
You can’t perform that action at this time.
0 commit comments