Skip to content

Commit 2f140e0

Browse files
committed
add Makefile
1 parent 3921da3 commit 2f140e0

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# User-specific stuff:
22
.idea/*
3-
/vendor/
3+
phpunit.phar

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
all: test
2+
3+
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

+4
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,7 @@ require_once 'vendor/autoload.php';
8383

8484
The line ``'php' => 'composer.phar install'`` is used for expanding "php" to absolute path.
8585
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

Comments
 (0)