Skip to content

Commit a373590

Browse files
Unit tests
1 parent c67c472 commit a373590

File tree

8 files changed

+1674
-1
lines changed

8 files changed

+1674
-1
lines changed

.idea/php-test-framework.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: php
2+
php:
3+
- 5.3
4+
- 5.4
5+
- 5.5
6+
- 5.6
7+
- 7.0
8+
- 7.1
9+
- hhvm
10+
- nightly
11+
12+
install:
13+
- composer install --no-interaction

composer.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,18 @@
1717
"email": "[email protected]"
1818
}
1919
],
20-
"require": {}
20+
"require": {},
21+
"require-dev": {
22+
"phpunit/phpunit": "^6.0"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"LucaSantarella\\": "src/"
27+
}
28+
},
29+
"autoload-dev": {
30+
"psr-4": {
31+
"LucaSantarella\\Tests\\": "tests/"
32+
}
33+
}
2134
}

0 commit comments

Comments
 (0)