├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── magento2-bash-completion ├── magento2-bash-completion-enterprise ├── modman ├── phpspec.yml ├── spec └── Model │ ├── BashCompletion │ └── GeneratorSpec.php │ ├── BashCompletionSpec.php │ └── CommandCollectionSpec.php └── src ├── Console └── Command │ └── BashCompletionCommand.php ├── Model ├── BashCompletion.php ├── BashCompletion │ └── Generator.php └── CommandCollection.php ├── etc ├── di.xml └── module.xml └── registration.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/composer.lock -------------------------------------------------------------------------------- /magento2-bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/magento2-bash-completion -------------------------------------------------------------------------------- /magento2-bash-completion-enterprise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/magento2-bash-completion-enterprise -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/modman -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/phpspec.yml -------------------------------------------------------------------------------- /spec/Model/BashCompletion/GeneratorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/spec/Model/BashCompletion/GeneratorSpec.php -------------------------------------------------------------------------------- /spec/Model/BashCompletionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/spec/Model/BashCompletionSpec.php -------------------------------------------------------------------------------- /spec/Model/CommandCollectionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/spec/Model/CommandCollectionSpec.php -------------------------------------------------------------------------------- /src/Console/Command/BashCompletionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/src/Console/Command/BashCompletionCommand.php -------------------------------------------------------------------------------- /src/Model/BashCompletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/src/Model/BashCompletion.php -------------------------------------------------------------------------------- /src/Model/BashCompletion/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/src/Model/BashCompletion/Generator.php -------------------------------------------------------------------------------- /src/Model/CommandCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/src/Model/CommandCollection.php -------------------------------------------------------------------------------- /src/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/src/etc/di.xml -------------------------------------------------------------------------------- /src/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/src/etc/module.xml -------------------------------------------------------------------------------- /src/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/HEAD/src/registration.php --------------------------------------------------------------------------------