-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (15 loc) · 790 Bytes
/
Makefile
File metadata and controls
18 lines (15 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all: cs-test phpunit
cs-test:
./vendor/bin/php-cs-fixer fix -v --dry-run --config-file=.php_cs src;
./vendor/bin/php-cs-fixer fix -v --dry-run --config-file=.php_cs tests;
./vendor/bin/php-cs-fixer fix -v --dry-run --config-file=.php_cs config;
./vendor/bin/php-cs-fixer fix -v --dry-run --config-file=.php_cs demo/ExtensionModule;
./vendor/bin/php-cs-fixer fix -v --dry-run --config-file=.php_cs demo/files;
cs-fix:
./vendor/bin/php-cs-fixer fix -v --config-file=.php_cs src;
./vendor/bin/php-cs-fixer fix -v --config-file=.php_cs tests;
./vendor/bin/php-cs-fixer fix -v --config-file=.php_cs config;
./vendor/bin/php-cs-fixer fix -v --config-file=.php_cs demo/ExtensionModule;
./vendor/bin/php-cs-fixer fix -v --config-file=.php_cs demo/files;
phpunit:
./vendor/bin/phpunit