stefanfisk / vy
A simple view library inspired by React.
Installs: 548
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 4
Language:HTML
Requires
- php: ^8.1
- psr/container: ^2.0
Requires (Dev)
- masterminds/html5: ^2.8
- ramsey/devtools: ^2.0
- rector/rector: ^0.18.2
- dev-main
- v1.0.0-beta.9
- v1.0.0-beta.8
- v1.0.0-beta.7
- v1.0.0-beta.6
- v1.0.0-beta.5
- v1.0.0-beta.4
- v1.0.0-beta.3
- v1.0.0-beta.2
- v1.0.0-beta.1
- v1.0.0-beta.0
- dev-dependabot/github_actions/codecov/codecov-action-5.3.1
- dev-dependabot/github_actions/ridedott/merge-me-action-2.10.115
- dev-dependabot/github_actions/shivammathur/setup-php-2.32.0
- dev-dependabot/github_actions/actions/checkout-4.2.2
- dev-temp
- dev-feature/new-syntax
This package is auto-updated.
Last update: 2025-03-12 05:33:38 UTC
README
A simple view library inspired by React.
About
Installation
Install this package as a dependency using Composer.
composer require stefanfisk/vy
Usage
Below is a minimal example. Check out the examples for more.
namespace StefanFisk\Vy\Example; use StefanFisk\Vy\Serialization\Html\UnsafeHtml; use StefanFisk\Vy\Vy; use function StefanFisk\Vy\el; class MyPage { public static function el(string $title): Element { return Element::create(self::render(...), [ 'title' => $title, ]); } private static function render(string $title, mixed $children = null): mixed { return [ UnsafeHtml::from('<!DOCTYPE html>'), html::el(lang: 'en')( head::el()( meta::el(charset: 'UTF-8'), title::el()($title), ), body::el()( $children, ), ), ]; } } $el = MyPage::el( title: 'Hello, world!', )( h1::el()( 'Hello, world!', ), p::el()( 'This is a test page. There are many like it, but this one is mine.', ), ); $vy = new Vy(); echo $vy->render($el);
Contributing
Contributions are welcome! To contribute, please familiarize yourself with CONTRIBUTING.md.
Coordinated Disclosure
Keeping user information safe and secure is a top priority, and we welcome the contribution of external security researchers. If you believe you've found a security issue in software that is maintained in this repository, please read SECURITY.md for instructions on submitting a vulnerability report.
Copyright and License
stefanfisk/vy is copyright © Stefan Fisk and licensed for use under the terms of the MIT License (MIT). Please see LICENSE for more information.