We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3921da3 commit 2f140e0Copy full SHA for 2f140e0
.gitignore
@@ -1,3 +1,3 @@
1
# User-specific stuff:
2
.idea/*
3
-/vendor/
+phpunit.phar
Makefile
@@ -0,0 +1,8 @@
+all: test
+
+phpunit.phar:
4
+ wget --no-check-certificate https://phar.phpunit.de/phpunit.phar -O phpunit.phar
5
+ chmod +x phpunit.phar
6
7
+test: phpunit.phar
8
+ ./phpunit.phar --bootstrap DeployApplication.php tests/*
README.md
@@ -83,3 +83,7 @@ require_once 'vendor/autoload.php';
83
84
The line ``'php' => 'composer.phar install'`` is used for expanding "php" to absolute path.
85
An absolute path is required because "php" doesn't work using relative path!
86
87
+# Contribute
88
89
+For running tests just run ``$ make``
0 commit comments