Skip to content

Commit

Permalink
chore: pass the test on PHP 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yokuru committed Jun 29, 2019
1 parent fc050a7 commit a0c00de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"illuminate/notifications": "^5.8"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"phpunit/phpunit": "^7.5 || ^8.2",
"mockery/mockery": "^1.2",
"orchestra/testbench": "^3.8",
"php-coveralls/php-coveralls": "^2.1"
Expand All @@ -32,16 +32,16 @@
"Yokuru\\Chatwork\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yokuru\\ChatworkTest\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Yokuru\\Chatwork\\ServiceProvider"
]
}
},
"autoload-dev": {
"psr-4": {
"Yokuru\\ChatworkTest\\": "tests/"
}
}
}
2 changes: 1 addition & 1 deletion config/chatwork.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
declare(strict_types=1);

return [
'token' => env('CHATWORK_API_TOKEN', 'YOUR_CHATWORK_API_TOKEN'),
'token' => env('CHATWORK_API_TOKEN', ''),
];

0 comments on commit a0c00de

Please sign in to comment.