Skip to content

Commit

Permalink
added missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
rakshazi committed Jun 13, 2019
1 parent 2376aaa commit 7af3351
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ composer.lock
tests/coverage
vendor
.phpunit.result.cache
# development
config
index.php
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ before_script:
- mkdir -p tests/coverage

script:
- ls -lah .
- ls -lah tests
- ls -lah tests/data
- ls -lah tests/data/config
- cat tests/data/config/wtf.php
- composer test:cs
- composer test:unit

Expand Down
29 changes: 29 additions & 0 deletions tests/data/config/wtf.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

declare(strict_types=1);

return [
'providers' => [
'\Wtf\Core\Tests\Dummy\Provider',
],
'middlewares' => [
'example_middleware',
],
'namespace' => [
'controller' => '\Wtf\Core\Tests\Dummy\\',
],
'error' => [
'handlers' => [
'default' => 'defaultErrorHandler',
'custom' => [
'\RedisException' => 'redisErrorHandler',
],
],
'sentry' => [
'dsn' => 'https://[email protected]/211424', //demo project
],
],
'dummy' => [
'has' => 'something',
],
];

0 comments on commit 7af3351

Please sign in to comment.