rossriley / php-vuejs-templating
PHP implementation of Vue.js templating engine
Installs: 46 463
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Open Issues: 1
pkg:composer/rossriley/php-vuejs-templating
Requires
- php: >=7.1
- ext-dom: *
- ext-libxml: *
Requires (Dev)
- phpunit/phpunit: ^4.0
- wikibase/wikibase-codesniffer: ^0.3.0
- wmde/hamcrest-html-matchers: ^0.1.0
- dev-master
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.1.2
- 1.1.1
- 1.1
- 1.0.1
- 1.0
- 0.1.37
- 0.1.36
- 0.1.35
- 0.1.34
- 0.1.33
- 0.1.32
- 0.1.31
- 0.1.30
- 0.1.29
- 0.1.28
- 0.1.27
- 0.1.26
- 0.1.25
- 0.1.24
- 0.1.23
- 0.1.22
- 0.1.21
- 0.1.20
- 0.1.19
- 0.1.18
- 0.1.17
- 0.1.16
- 0.1.15
- 0.1.14
- 0.1.13
- 0.1.12
- 0.1.11
- 0.1.10
- 0.1.9
- 0.1.8
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1
- dev-hotfix/handle-filters-for-nodes
- dev-hotfix/improve-test-coverage
This package is not auto-updated.
Last update: 2025-10-17 01:37:34 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:
"rossriley/php-vuejs-templating": "~0.1"
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.