PHP code example of beyerz / simple-hmvc-bundle
1. Go to this page and download the library: Download beyerz/simple-hmvc-bundle library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
beyerz / simple-hmvc-bundle example snippets
public function registerBundles()
{
return array(
new Beyerz\SimpleHMVCBundle\BeyerzSimpleHMVCBundle(),
);
}
├── Context
│ └── Page
│ └── GitExample
│ ├── FirstExampleContext.php
│ └── SecondExampleContext.php
├── Controller
│ └── Page
│ └── GitExampleController.php
├── Input
│ └── Page
│ └── GitExample
│ ├── FirstExampleInput.php
│ └── SecondExampleInput.php
├── Model
│ └── Page
│ └── GitExample
│ ├── FirstExampleModel.php
│ └── SecondExampleModel.php
├── Resources
│ ├── config
│ │ ├── routing.yml
│ │ └── services.yml
│ └── views
│ └── Page
│ └── GitExample
│ ├── first_example.html.twig
│ └── second_example.html.twig
└── Tests
└── Controller
└── Page
└── GitExampleControllerTest.php
├── Context
│ └── Page
│ └── GitExample
│ └── SubExample
│ ├── FirstSubExampleContext.php
│ └── SecondSubExampleContext.php
├── Controller
│ └── Page
│ └── GitExample
│ └── SubExampleController.php
├── Input
│ └── Page
│ └── GitExample
│ └── SubExample
│ ├── FirstSubExampleInput.php
│ └── SecondSubExampleInput.php
├── Model
│ └── Page
│ └── GitExample
│ └── SubExample
│ ├── FirstSubExampleModel.php
│ └── SecondSubExampleModel.php
├── Resources
│ ├── config
│ │ ├── routing.yml
│ │ └── services.yml
│ └── views
│ └── Page
│ └── GitExample
│ └── SubExample
│ ├── first_sub_example.html.twig
│ └── second_sub_example.html.twig
└── Tests
└── Controller
└── Page
└── GitExample
└── SubExampleControllerTest.php
├── Context
│ └── Element
│ └── GitElementContext.php
├── Controller
├── DependencyInjection
│ ├── BeyerzTestingExtension.php
│ └── Configuration.php
├── Input
│ └── Element
│ └── GitElementInput.php
├── Model
│ └── Element
│ └── GitElementModel.php
├── Resources
│ ├── config
│ │ ├── routing.yml
│ │ └── services.yml
│ └── views
│ └── Element
│ └── git_element.html.twig
└── Tests
├── Context
│ └── Element
│ └── GitExample
│ └── SubElementContext.php
├── Controller
├── DependencyInjection
│ ├── BeyerzTestingExtension.php
│ └── Configuration.php
├── Input
│ └── Element
│ └── GitExample
│ └── SubElementInput.php
├── Model
│ └── Element
│ └── GitExample
│ └── SubElementModel.php
├── Resources
│ ├── config
│ │ ├── routing.yml
│ │ └── services.yml
│ └── views
│ └── Element
│ └── GitExample
│ └── sub_element.html.twig
└── Tests