Skip to content

Commit a71c17c

Browse files
committed
Initial commit
0 parents  commit a71c17c

File tree

8 files changed

+1577
-0
lines changed

8 files changed

+1577
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test:
2+
php vendor/bin/phpunit

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PHPUnit with TravisCI
2+
=====================
3+

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "mykbas/phpunit-with-travis",
3+
"require": {
4+
"php": "^7.0"
5+
},
6+
"require-dev": {
7+
"phpunit/phpunit": "^6.4"
8+
},
9+
"autoload": {
10+
"psr-4": {
11+
"App\\": "src/"
12+
}
13+
},
14+
"autoload-dev": {
15+
"psr-4": {
16+
"App\\Tests\\": "tests/"
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)