├── .gitignore ├── LICENSE.txt ├── LICENSE_AFL.txt ├── README.md ├── composer.json ├── composer.lock ├── magento └── src ├── Command ├── Context.php ├── Context │ ├── Add.php │ ├── Get.php │ ├── GetList.php │ ├── Load.php │ ├── Remove.php │ └── Set.php └── Remote.php └── ContextList.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/LICENSE_AFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/composer.lock -------------------------------------------------------------------------------- /magento: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/magento -------------------------------------------------------------------------------- /src/Command/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Context.php -------------------------------------------------------------------------------- /src/Command/Context/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Context/Add.php -------------------------------------------------------------------------------- /src/Command/Context/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Context/Get.php -------------------------------------------------------------------------------- /src/Command/Context/GetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Context/GetList.php -------------------------------------------------------------------------------- /src/Command/Context/Load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Context/Load.php -------------------------------------------------------------------------------- /src/Command/Context/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Context/Remove.php -------------------------------------------------------------------------------- /src/Command/Context/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Context/Set.php -------------------------------------------------------------------------------- /src/Command/Remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/Command/Remote.php -------------------------------------------------------------------------------- /src/ContextList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-architects/magento-tool/HEAD/src/ContextList.php --------------------------------------------------------------------------------