Download the PHP package bkuhl/bible-bowl-texts without Composer
On this page you can find all versions of the php package bkuhl/bible-bowl-texts. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bkuhl/bible-bowl-texts
More information about bkuhl/bible-bowl-texts
Files in bkuhl/bible-bowl-texts
Package bible-bowl-texts
Short Description A PHP library for managing Bible quiz text by seasons and blocks
License MIT
Informations about the package bible-bowl-texts
Bible Bowl Texts
A PHP library for managing Bible quiz text by seasons and blocks. This library generates and manages JSON files representing study text for Bible quiz programs, with easy access to the entire season's text and smaller segments called "blocks." Supports multiple programs (Team and Beginner) with different text ranges and memory verses.
Features
- Multi-Program Support: Separate data for Team and Beginner programs
- Memory Verses: Support for memory verse collections with book, chapter, and verse references
- Efficient JSON Format: Compatible with the
bkuhl/scripture-rangespackage format - Multi-Book Support: Can handle ranges spanning multiple books
- Direct Block Access: Blocks are stored as objects keyed by number for O(1) lookup
- Concise Chapter Ranges: Uses efficient chapter ranges (e.g., 16-24) instead of individual chapters
- Factory Pattern: Easy instantiation of season and block data by ID or name
Installation
Usage
Data Structure
Directory Layout
JSON Structure
The library generates efficient JSON files with the following structure:
Key Features of the JSON Format:
- Multi-Program Support: Separate JSON files for Team and Beginner programs
- Memory Verses: Explicit structure with books → chapters → verses hierarchy
- Efficient Chapter Ranges: Uses single range objects for multi-chapter spans (e.g., chapters 16-24)
- Multi-Book Support: Can represent ranges spanning multiple books
- Direct Block Access: Blocks are keyed by number (
"1","2","3") for O(1) lookup - ScriptureRanges Compatible: Uses the
BKuhl\ScriptureRangescomposer package for range building
Programs
Team Program
The default program with full text coverage and comprehensive memory verses.
Beginner Program
A simplified program with reduced text coverage and fewer memory verses, stored in the data/beginner/ directory.
Current Season Data
Season 16: 2025 Fall
Team Program
- Text: 1 Samuel 16-31 (without chapter 25)
- Block 1: 1 Samuel 16-19
- Block 2: 1 Samuel 20-24
- Block 3: 1 Samuel 26-31
- Memory Verses: 3 verses (1 Samuel 16:7, 17:45, 18:3)
Beginner Program
- Text: 1 Samuel 16-20
- Block 1: 1 Samuel 16-18
- Block 2: 1 Samuel 19-20
- Memory Verses: 2 verses (1 Samuel 16:7, 17:45)
Generating Season Data
Use the included script to generate new season data:
This script uses the bkuhl/scripture-ranges package to build proper range objects with:
ChapterRangeobjects for efficient multi-chapter spans- No manual verse specification (whole chapters automatically handled)
- Book objects from
bkuhl/bible-csbpackage
Testing
Requirements
- PHP 8.1+
- Compatible with
bkuhl/scripture-rangespackage format
License
MIT