├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── deploy.sample.php ├── docs └── images │ └── github_banner.png ├── gpl-3.0.txt └── recipes ├── coreshop.php ├── npm.php ├── pimcore.php └── yarn.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/composer.json -------------------------------------------------------------------------------- /deploy.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/deploy.sample.php -------------------------------------------------------------------------------- /docs/images/github_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/docs/images/github_banner.png -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /recipes/coreshop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/recipes/coreshop.php -------------------------------------------------------------------------------- /recipes/npm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/recipes/npm.php -------------------------------------------------------------------------------- /recipes/pimcore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/recipes/pimcore.php -------------------------------------------------------------------------------- /recipes/yarn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instride-ch/pimcore-deployer/HEAD/recipes/yarn.php --------------------------------------------------------------------------------