gamelena / tangerine
There is no license information available for the latest version (2.3.0) of this package.
Tangerine
2.3.0
2026-03-02 22:53 UTC
Requires
- php: >=8.1.0
- ext-dom: *
- ext-libxml: *
- ext-mbstring: *
- ext-mysqli: *
- phpoffice/phpspreadsheet: ^1.29
- shardj/zf1-future: ^1.24
Suggests
- ext-gd: to use GD library based image processing, you cant had installed ext-imagick ignore this.
- ext-imagick: to use Imagick based image processing, you cant had installed ext-gd ignore this.
- ext-xsl: to generate phpDoc documentation.
This package is auto-updated.
Last update: 2026-03-03 01:12:50 UTC
README
Local Testing Environment (Docker) - Recommended
This configuration is provided for developing and testing the library in a standalone environment. Since Tangerine is a PHP library, this setup lifts a test application container to verify functionality.
Usage
1. Start Environment
Lifts PHP 8.2 Apache + MySQL 5.7 containers.
docker-compose up -d --build
2. Install & Patch (Replaces Ant/Bower)
Runs composer install, bower install, and applies patches (like zend-test-patch.sh) inside the container.
# Remove local lock file if present (to avoid platform mismatches) rm -f composer.lock docker-compose exec app bootstrap.sh
3. Initialize Test Database
Creates the tangerine database and users.
docker-compose exec app bash init_db.sh
4. Verify
Access the test instance at http://localhost:8888.
5. Access Database
To access the MySQL database inside the container:
docker-compose exec db mysql -u root -p*** tangerine
Or to run a specific query:
docker-compose exec db mysql -u root -p*** tangerine -e "SELECT * FROM users WHERE md5_password = '31cb6a72f8f70612e27af0f59a9322ca';"