Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lookyman/nette-texy
Quick and easy Texy integration into you Nette Framework projects
https://github.com/lookyman/nette-texy
nette texy
Last synced: 25 days ago
JSON representation
Quick and easy Texy integration into you Nette Framework projects
- Host: GitHub
- URL: https://github.com/lookyman/nette-texy
- Owner: lookyman
- License: mit
- Created: 2014-08-19T13:46:43.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-26T09:02:58.000Z (over 8 years ago)
- Last Synced: 2024-04-25T02:33:25.738Z (6 months ago)
- Topics: nette, texy
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Nette Texy
==========Quick and easy [Texy](https://texy.info/) integration into you [Nette Framework](https://nette.org/) projects.
[![Build Status](https://travis-ci.org/lookyman/nette-texy.svg?branch=master)](https://travis-ci.org/lookyman/nette-texy)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lookyman/nette-texy/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/lookyman/nette-texy/?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/lookyman/nette-texy/badge.svg?branch=master)](https://coveralls.io/github/lookyman/nette-texy?branch=master)
[![Downloads](https://img.shields.io/packagist/dt/lookyman/nette-texy.svg)](https://packagist.org/packages/lookyman/nette-texy)
[![Latest stable](https://img.shields.io/packagist/v/lookyman/nette-texy.svg)](https://packagist.org/packages/lookyman/nette-texy)Installation
------------Install using the [Composer](http://getcomposer.org/):
```sh
$ composer require lookyman/nette-texy
```Enable the extension in your [NEON](https://ne-on.org/) config:
```yml
extensions:
texy: Lookyman\NetteTexy\DI\TexyExtension
```Use the Texy macro or helper in your [Latte](https://latte.nette.org/) templates like this:
```smarty
{texy}some content{/texy}
{$var |texy}
```