├── .gitignore ├── .travis.yml ├── LICENSE.md ├── composer.json ├── n98-magerun.yaml ├── phpunit.xml.dist ├── readme.md ├── src └── Fruitcake │ └── Magerun │ └── Modman │ └── GenerateCommand.php └── tests ├── GenerateCommandTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/composer.json -------------------------------------------------------------------------------- /n98-magerun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/n98-magerun.yaml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/readme.md -------------------------------------------------------------------------------- /src/Fruitcake/Magerun/Modman/GenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/src/Fruitcake/Magerun/Modman/GenerateCommand.php -------------------------------------------------------------------------------- /tests/GenerateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruitcake/magerun-modman/HEAD/tests/GenerateCommandTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |