├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── Plugin.php ├── README.md ├── UPGRADE.md ├── assets └── images │ └── twigextensions-icon.png ├── composer.json ├── phpunit.xml ├── tests └── PluginTest.php └── updates └── version.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /assets/images/twigextensions-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/assets/images/twigextensions-icon.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/PluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/tests/PluginTest.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojtasvoboda/oc-twigextensions-plugin/HEAD/updates/version.yaml --------------------------------------------------------------------------------