biberltd / smarty-bundle
This Symfony2 bundle provides integration for the Smarty3 template engine.
Installs: 282
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 14
Forks: 38
Type:symfony-bundle
Requires
- php: >=5.3.3
- smarty/smarty: 3.1.*@stable
- symfony/framework-bundle: ~3.3|~3.4
Requires (Dev)
- symfony/assetic-bundle: ~2.6
- symfony/security: ~2.6
- symfony/yaml: ~2.6
Suggests
- knplabs/knp-menu-bundle: Smarty3 integration with KnpMenu (object oriented menus)
- liip/theme-bundle: Integration of Twitter Bootstrap into Symfony2 (themes)
- mopa/bootstrap-bundle: Integration of Twitter Bootstrap into Symfony2
- mopa/bootstrap-sandbox-bundle: Integration of Twitter Bootstrap into Symfony2 (extra)
- symfony/assetic-bundle: Assetic support in Smarty templates
This package is not auto-updated.
Last update: 2022-11-19 18:19:54 UTC
README
This Symfony2 bundle provides integration for the Smarty3 template engine.
Caution: This bundle is developed in sync with Symfony's repository. For maximum compatibility with Symfony 2.0.x, you need to use releases 1.0.x of this bundle.
Requirements
Installation
SmartyBundle is composer-friendly.
1. Add SmartyBundle in your composer.json
{ "require": { "noiselabs/smarty-bundle": "dev-master" } }
Now tell composer to download the bundle by running the command:
$ php composer.phar update noiselabs/smarty-bundle
Composer will install the bundle to your project's vendor/noiselabs
directory.
2. Enable the bundle
Enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new NoiseLabs\Bundle\SmartyBundle\SmartyBundle(), ); }
3. Enable the Smarty template engine in the config
# app/config/config.yml framework: templating: { engines: ['twig', 'smarty'] }
For other installation methods (Symfony-2.0 vendors script or git submodules) please refer to the documentation below.
Documentation
Complete documentation is available on Read the Docs.
Extensions under development
If you want to contribute to SmartyBundle please switch to the following branches when contributing to one of these extensions.
- Assetic - assetic-extension
- Twitter Bootstrap - twitter-bootstrap
- Forms - form-extension
- Security - completed, merged into master
License
This bundle is licensed under the LGPLv3 License. See the LICENSE file for details.
Authors
Vítor Brandão - vitor@noiselabs.org ~ twitter.com/noiselabs ~ blog.noiselabs.org
See also the list of contributors who participated in this project.
Submitting bugs and feature requests
Bugs and feature requests are tracked on GitHub.