composer create-project -s dev sylius/sylius-standard syliusWhich installs the sylius standard in a new folder, named
sylius
| is_processing = false; | |
| last_page = false; | |
| function addMoreElements() { | |
| is_processing = true; | |
| $.ajax({ | |
| type: "GET", | |
| //FOS Routing | |
| url: Routing.generate('route_name', {page: page}), | |
| success: function(data) { | |
| if (data.html.length > 0) { |
| <?php | |
| namespace OpenObjects\Bundle\CoreBundle\Service; | |
| use Symfony\Component\Form\Extension\Validator\ViolationMapper\ViolationMapper; | |
| use Symfony\Component\Form\Form; | |
| use Symfony\Component\Form\FormError; | |
| use Symfony\Component\Validator\ConstraintViolation; | |
| /** |
| <?php | |
| namespace AppBundle\DependencyInjection; | |
| use Symfony\Component\Config\Definition\Builder\TreeBuilder; | |
| use Symfony\Component\Config\Definition\ConfigurationInterface; | |
| class Configuration implements ConfigurationInterface | |
| { | |
| public function getConfigTreeBuilder() |
| container_commands: | |
| 01_install_pma: | |
| test: test -n "$PMA_VER" && test ! -f /tmp/phpmyadmin.tar.gz | |
| command: | | |
| cd /tmp | |
| wget https://files.phpmyadmin.net/phpMyAdmin/${PMA_VER}/phpMyAdmin-${PMA_VER}-all-languages.tar.gz | |
| wget https://files.phpmyadmin.net/phpMyAdmin/${PMA_VER}/phpMyAdmin-${PMA_VER}-all-languages.tar.gz.sha1 | |
| cd /tmp && sha1sum --check phpMyAdmin-${PMA_VER}-all-languages.tar.gz.sha1 | |
| if [[ $? == 0 ]] | |
| then |
| # The following script will deploy a Laravel 5 applicaion on AWS Elastic Beanstalk. | |
| # Add to .ebextensions at the root of your application and name your commands file (e.g., commands.config) | |
| # -------------------------------- Commands ------------------------------------ | |
| # Use "commands" key to execute commands on the EC2 instance. The commands are | |
| # processed in alphabetical order by name, and they run before the application | |
| # and web server are set up and the application version file is extracted. | |
| # ------------------------------------------------------------------------------ | |
| commands: | |
| 01updateComposer: |
| is_processing = false; | |
| last_page = false; | |
| function addMoreElements() { | |
| is_processing = true; | |
| $.ajax({ | |
| type: "GET", | |
| //FOS Routing | |
| url: Routing.generate('route_name', {page: page}), | |
| success: function(data) { | |
| if (data.html.length > 0) { |
| # Apache configuration file | |
| # httpd.apache.org/docs/2.2/mod/quickreference.html | |
| # Note .htaccess files are an overhead, this logic should be in your Apache | |
| # config if possible: httpd.apache.org/docs/2.2/howto/htaccess.html | |
| # Techniques in here adapted from all over, including: | |
| # Kroc Camen: camendesign.com/.htaccess | |
| # perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/ | |
| # Sample .htaccess file of CMS MODx: modxcms.com | |
| # This is the free sample of .htaccess from 6GO s.r.l. | |
| # @author Claudio Ludovico Panetta (@Ludo237) |