-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·23 lines (19 loc) · 901 Bytes
/
Makefile
File metadata and controls
executable file
·23 lines (19 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: install
install:
composer update
.PHONY: tests
tests:
vendor/bin/phpunit
.PHONY: paratest
paratest:
vendor/bin/paratest
.PHONY: snapshots
snapshots:
php bin/snapshots
.PHONY: docs
docs:
echo "# Ruleset 8.2\n" > .docs/rulesets/ruleset-8.2.md && vendor/bin/phpcs --standard=ruleset-8.2.xml -e >> .docs/rulesets/ruleset-8.2.md
echo "# Ruleset 8.3\n" > .docs/rulesets/ruleset-8.3.md && vendor/bin/phpcs --standard=ruleset-8.3.xml -e >> .docs/rulesets/ruleset-8.3.md
echo "# Ruleset 8.4\n" > .docs/rulesets/ruleset-8.4.md && vendor/bin/phpcs --standard=ruleset-8.4.xml -e >> .docs/rulesets/ruleset-8.4.md
echo "# Ruleset 8.5\n" > .docs/rulesets/ruleset-8.5.md && vendor/bin/phpcs --standard=ruleset-8.5.xml -e >> .docs/rulesets/ruleset-8.5.md
echo "# Ruleset next\n" > .docs/rulesets/ruleset-next.md && vendor/bin/phpcs --standard=ruleset-next.xml -e >> .docs/rulesets/ruleset-next.md