├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpcsdocblocks.xml ├── phpcsforbiddenfunctions.xml └── src ├── Command.php └── Events ├── CommandStarting.php └── CommandTerminating.php /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/composer.json -------------------------------------------------------------------------------- /phpcsdocblocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/phpcsdocblocks.xml -------------------------------------------------------------------------------- /phpcsforbiddenfunctions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/phpcsforbiddenfunctions.xml -------------------------------------------------------------------------------- /src/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/src/Command.php -------------------------------------------------------------------------------- /src/Events/CommandStarting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/src/Events/CommandStarting.php -------------------------------------------------------------------------------- /src/Events/CommandTerminating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmitch/consoleEvents/HEAD/src/Events/CommandTerminating.php --------------------------------------------------------------------------------