-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (25 loc) · 744 Bytes
/
Makefile
File metadata and controls
34 lines (25 loc) · 744 Bytes
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
test: install
php --version
vendor/bin/peridot --version
vendor/bin/peridot
coverage: install
php --version
vendor/bin/peridot --version
phpdbg -qrr vendor/bin/peridot -r html-code-coverage --code-coverage-path "coverage"
ci-coverage: install
php --version
vendor/bin/peridot --version
phpdbg -qrr vendor/bin/peridot -r clover-code-coverage --code-coverage-path "coverage/clover.xml"
vendor/bin/peridot
hhvm-test: install
scripts/hhvm vendor/bin/peridot
lint: install
vendor/bin/php-cs-fixer fix
install: vendor/autoload.php
docs: install
vendor/bin/apigen generate
.PHONY: test coverage ci-coverage hhvm-test lint install
vendor/autoload.php: composer.lock
composer install
composer.lock: composer.json
composer update