├── .env-app ├── .env-app.test ├── .gitignore ├── CHANGELOG-CE.md ├── LICENSE ├── README.md ├── UPGRADE.md ├── behat.yml.dist ├── bin └── console ├── composer.json ├── config ├── bootstrap_test.php ├── config.yml ├── config_dev.yml ├── config_prod.yml ├── config_test.yml ├── doctrine.yml ├── routing.yml ├── routing_dev.yml ├── security.yml └── security_test.yml ├── dev.json ├── dev.lock ├── karma.conf.js.dist ├── package.json ├── phpunit.xml.dist ├── public ├── .htaccess ├── bundles │ └── .gitkeep ├── favicon.ico ├── index.php ├── index_dev.php ├── js │ └── .gitkeep ├── maintenance.html ├── media │ └── .gitkeep ├── notinstalled.html └── robots.txt ├── src ├── .htaccess ├── AppKernel.php └── Entity │ └── .gitkeep ├── templates ├── Default │ └── index.html.twig ├── base.html.twig └── bundles │ └── TwigBundle │ └── Exception │ ├── error.html.twig │ └── exception_full.html.twig ├── translations └── .gitignore ├── var ├── OroRequirements.php ├── SymfonyRequirements.php ├── cache │ └── .gitkeep ├── data │ └── .gitignore ├── logs │ └── .gitkeep ├── maintenance │ └── .gitkeep └── sessions │ └── .gitkeep └── webpack.config.js /.env-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/.env-app -------------------------------------------------------------------------------- /.env-app.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/.env-app.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG-CE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/CHANGELOG-CE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /behat.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/behat.yml.dist -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/bin/console -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/composer.json -------------------------------------------------------------------------------- /config/bootstrap_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/bootstrap_test.php -------------------------------------------------------------------------------- /config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/config.yml -------------------------------------------------------------------------------- /config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/config_dev.yml -------------------------------------------------------------------------------- /config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/config_prod.yml -------------------------------------------------------------------------------- /config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/config_test.yml -------------------------------------------------------------------------------- /config/doctrine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/doctrine.yml -------------------------------------------------------------------------------- /config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/routing.yml -------------------------------------------------------------------------------- /config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/routing_dev.yml -------------------------------------------------------------------------------- /config/security.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/security_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/config/security_test.yml -------------------------------------------------------------------------------- /dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/dev.json -------------------------------------------------------------------------------- /dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/dev.lock -------------------------------------------------------------------------------- /karma.conf.js.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/karma.conf.js.dist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/bundles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/public/index.php -------------------------------------------------------------------------------- /public/index_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/public/index_dev.php -------------------------------------------------------------------------------- /public/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/public/maintenance.html -------------------------------------------------------------------------------- /public/media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/notinstalled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/public/notinstalled.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /src/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/src/AppKernel.php -------------------------------------------------------------------------------- /src/Entity/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/Default/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/templates/Default/index.html.twig -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/bundles/TwigBundle/Exception/error.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@OroUI/Default/error.html.twig' %} 2 | -------------------------------------------------------------------------------- /templates/bundles/TwigBundle/Exception/exception_full.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/templates/bundles/TwigBundle/Exception/exception_full.html.twig -------------------------------------------------------------------------------- /translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/OroRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/var/OroRequirements.php -------------------------------------------------------------------------------- /var/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/var/SymfonyRequirements.php -------------------------------------------------------------------------------- /var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/maintenance/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello-application/HEAD/webpack.config.js --------------------------------------------------------------------------------