wmde / php-vuejs-templating
PHP implementation of Vue.js templating engine
Installs: 19 343
Dependents: 2
Suggesters: 0
Security: 0
Stars: 26
Watchers: 26
Forks: 7
Open Issues: 3
Requires
- php: >=7.2
Requires (Dev)
- mediawiki/mediawiki-codesniffer: 34.0.0
- phpunit/phpunit: ^8.5.3
This package is auto-updated.
Last update: 2024-10-07 19:21:22 UTC
README
Simple PHP implementation of the Vue Template renderer.
The library has been created to be used for rendering templates in the Wikibase Lexeme extension. It intentionally covers only a subset of Vue Template syntax that is used by the Wikibase Lexeme extension. It is not going to cover all elements of Vue Template language.
Installation
The recommended way of installing the library is using Composer,
e.g. by adding the following line to the require
section of the composer.json
file:
"wmde/php-vuejs-templating": "^2.0.0"
Tests
The library comes with a set of PHPUnit tests, that include unit tests of library elements
(tests/php
directory), and also integration tests of rendering the template syntax elements used
in the Wikibase Lexeme extension (tests/integration
directory).
Tests could run by executing composer phpunit
command.