We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b2830 commit c1e322fCopy full SHA for c1e322f
Makefile
@@ -0,0 +1,23 @@
1
+#!/usr/bin/make -f
2
+
3
+all:
4
5
+COMPOSER=./composer.phar
6
7
8
+# dep: Install dependencies necessary for development work on this library.
9
+dep: $(COMPOSER)
10
+ [ -d vendor/ ] || $(COMPOSER) install
11
12
+# composer.phar: Get composer binary from authoritative source
13
+$(COMPOSER):
14
+ curl -sS https://getcomposer.org/installer | php
15
16
+# update: Updates all composer dependencies of this library.
17
+update: $(COMPOSER)
18
+ $(COMPOSER) update
19
20
+# test: Executes all phpUnit tests according to the local phpunit.xml.dist file.
21
+test: dep
22
+ vendor/bin/phpunit -v
23
0 commit comments