playground.php 740 B

12345678910111213141516171819202122
  1. <?php
  2. require_once __DIR__.'/vendor/autoload.php';
  3. use function Termwind\render;
  4. render(<<<'HTML'
  5. <div class="ml-2">
  6. <pre>
  7. ─ ─ ─ ─
  8. │ │ │ │ │ │ │ │
  9. │ │ ──, │ │ ──, │ │ │ │ ─
  10. │/ \ / │ │ │ │/ / │ │/ \─│/ │/
  11. │ │─/\─/│─/ \─/│─/│──/\─/│─/\─/ │──/│──/
  12. </pre>
  13. <div class="px-1 bg-green-300 text-black">by ⚙️ Configured</div>
  14. <div class="px-1 mt-1 bg-blue-300 text-black">{{ $version }}</div>
  15. <em class="ml-1">
  16. Create portable PHP CLI applications w/ PHP Micro
  17. </em>
  18. </div>
  19. HTML);