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 dd651ef commit 51c05ecCopy full SHA for 51c05ec
.travis.yml
@@ -1,9 +1,9 @@
1
language: php
2
3
php:
4
- - 7.1
5
- - 7.2
6
- - 7.3
+ - '7.1'
+ - '7.2'
+ - '7.3'
7
8
#matrix:
9
# include:
composer.json
@@ -28,6 +28,9 @@
28
"toolkit/php-utils": "~1.0",
29
"toolkit/sys-utils": "~1.0"
30
},
31
+ "require-dev": {
32
+ "phpunit/phpunit": "^7.5"
33
+ },
34
"autoload": {
35
"psr-4": {
36
"Inhere\\Console\\": "src/"
test/boot.php
@@ -29,4 +29,6 @@
if (is_file(dirname(__DIR__, 3) . '/autoload.php')) {
require dirname(__DIR__, 3) . '/autoload.php';
+} elseif (is_file(dirname(__DIR__) . '/vendor/autoload.php')) {
+ require dirname(__DIR__) . '/vendor/autoload.php';
}
0 commit comments