├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── codeception.yml ├── composer.json ├── src └── SentryTarget.php └── tests ├── .gitignore ├── _support ├── E2eTester.php ├── Helper │ └── Unit.php └── UnitTester.php ├── bootstrap.php ├── commands └── SentryController.php ├── config └── params.php ├── models └── User.php ├── sentry-fill ├── unit.suite.yml └── unit ├── SentryTargetTest.php ├── bootstrap.php └── config.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/README.md -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/composer.json -------------------------------------------------------------------------------- /src/SentryTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/src/SentryTarget.php -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | _output 2 | _support/_generated 3 | config/params-local.php 4 | -------------------------------------------------------------------------------- /tests/_support/E2eTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/_support/E2eTester.php -------------------------------------------------------------------------------- /tests/_support/Helper/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/_support/Helper/Unit.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/commands/SentryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/commands/SentryController.php -------------------------------------------------------------------------------- /tests/config/params.php: -------------------------------------------------------------------------------- 1 | null 5 | ]; 6 | -------------------------------------------------------------------------------- /tests/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/models/User.php -------------------------------------------------------------------------------- /tests/sentry-fill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/sentry-fill -------------------------------------------------------------------------------- /tests/unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/unit.suite.yml -------------------------------------------------------------------------------- /tests/unit/SentryTargetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/unit/SentryTargetTest.php -------------------------------------------------------------------------------- /tests/unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/unit/bootstrap.php -------------------------------------------------------------------------------- /tests/unit/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notamedia/yii2-sentry/HEAD/tests/unit/config.php --------------------------------------------------------------------------------