deckaura / tarot-card-meanings
Complete 78-card tarot deck with all card meanings by Deckaura
dev-master
2026-04-04 12:11 UTC
Requires
- php: >=8.0
This package is auto-updated.
Last update: 2026-05-04 12:16:21 UTC
README
Complete 78-card tarot deck with all card meanings, built by Deckaura.
Includes upright, reversed, love, career, yes/no, keywords, and elemental associations for all 22 Major Arcana cards.
Installation
composer require deckaura/tarot-card-meanings
Usage
<?php require_once 'vendor/autoload.php'; use Deckaura\Tarot\TarotCardMeanings; // Get all Major Arcana cards $cards = TarotCardMeanings::getMajorArcana(); echo $cards[0]['name']; // "The Fool" echo $cards[0]['upright']; // "New beginnings, innocence, spontaneity, free spirit" echo $cards[0]['element']; // "Air" // Draw a random card $card = TarotCardMeanings::randomCard(); echo "{$card['name']}: {$card['upright']}"; // Get today's daily card (same card for same date) $daily = TarotCardMeanings::dailyCard(); echo "Today's card: {$daily['name']}"; echo "Love: {$daily['love']}"; echo "Career: {$daily['career']}"; echo "Yes/No: {$daily['yes_no']}"; // Access card keywords $keywords = implode(', ', $cards[1]['keywords']); echo $keywords; // "manifestation, willpower, creation, skill"
Card Properties
Each card is an associative array with:
| Key | Description |
|---|---|
name |
Card name (e.g., "The Fool") |
upright |
Upright meaning |
reversed |
Reversed meaning |
love |
Love and relationship interpretation |
career |
Career and work interpretation |
yes_no |
Yes, No, or Maybe answer |
keywords |
Array of associated keywords |
element |
Associated element (Air, Water, Fire, Earth) |
Free Tarot Tools by Deckaura
- Free Tarot Reading
- Daily Tarot Card
- Numerology Calculator
- Birth Card Calculator
- Spirit Animal Quiz
- Angel Number Calculator
- Moon Phase Today
- Birth Chart Calculator
- Zodiac Compatibility
- All 78 Card Meanings
Related Packages
- NPM: tarot-card-meanings
- PyPI: tarot-card-meanings
- Go: github.com/gokimedia/tarot-card-meanings
- Rust: tarot-card-meanings
Blog Post
Read How I Shipped a Tarot Card API to Every Major Package Registry in One Day for the full story behind this project.
License
MIT License - Copyright (c) 2026 Deckaura