nubox / standard-card-deck
There is no license information available for the latest version (dev-master) of this package.
simple functions for displaying standard card decks
Fund package maintenance!
Community Bridge
dev-master
2023-08-21 20:23 UTC
Requires
- php: ~8.2
Requires (Dev)
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2025-03-22 00:11:24 UTC
README
Introduction
This small composer package helps to render playing cards via HTML.
Installation
Install through composer
{ "require" : { "nubox/standard-card-deck" : "*" } }
Usage
Draw a card by a simple string
include 'vendor/autoload.php'; echo drawCard('4 Karo'); echo drawCard('10 Herz');
Generating a card deck, take a card from the deck and draw it (OOP Style)
$deck = new \NuBox\StandardCardDeck\Model\Deck(); // or $deck = \NuBox\StandardCardDeck\Singleton\DeckSingleton::getInstance()->getDeck(); echo drawCard($deck->takeCard());