{"id":36994527,"url":"https://github.com/francescozanoni/zend-cache-sqlite3-pdo","last_synced_at":"2026-01-13T23:46:45.531Z","repository":{"id":62506973,"uuid":"111079910","full_name":"francescozanoni/zend-cache-sqlite3-pdo","owner":"francescozanoni","description":"SQLite 3 cache engine for Zend Framework 1, based on PDO driver","archived":false,"fork":false,"pushed_at":"2017-11-28T09:58:51.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-30T04:03:29.380Z","etag":null,"topics":["cache","pdo","sqlite","sqlite3","zend-framework","zendframework"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/francescozanoni.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-11-17T08:44:42.000Z","updated_at":"2017-11-24T21:40:27.000Z","dependencies_parsed_at":"2022-11-02T12:45:56.672Z","dependency_job_id":null,"html_url":"https://github.com/francescozanoni/zend-cache-sqlite3-pdo","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/francescozanoni/zend-cache-sqlite3-pdo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-pdo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-pdo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-pdo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-pdo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/francescozanoni","download_url":"https://codeload.github.com/francescozanoni/zend-cache-sqlite3-pdo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-pdo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cache","pdo","sqlite","sqlite3","zend-framework","zendframework"],"created_at":"2026-01-13T23:46:45.463Z","updated_at":"2026-01-13T23:46:45.522Z","avatar_url":"https://github.com/francescozanoni.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SQLite 3 cache engine for Zend Framework 1 (PDO driver) [![Build Status](https://travis-ci.org/francescozanoni/zend-cache-sqlite3-pdo.svg?branch=master)](https://travis-ci.org/francescozanoni/zend-cache-sqlite3-pdo)\n\n\n## Purposes\n\n1. add [SQLite 3](https://www.sqlite.org/)-based cache engine to Zend Framework 1, besides the default SQLite 2 engine\n1. provide it as Composer package, with specific requirements and fully automated installation\n1. integrate with [the official Zend Framework 1 package](https://github.com/zendframework/zf1)\n\n\n## How to use\n\n1. add this package to your project dependencies:\n   ```bash\n   composer require francescozanoni/zend-cache-sqlite3-pdo\n   ```\n1. customize **application.ini** file:\n   ```ini\n   resources.cachemanager.\u003ccache_name\u003e.backend.name = Sqlite3\n   resources.cachemanager.\u003ccache_name\u003e.backend.options.cache_db_complete_path = \"/path/to/cache.sqlite\"\n   ```\n1. create cache database file and make it writable by web user (tables are created automatically by the engine itself):\n    ```bash\n    touch /path/to/cache.sqlite\n    chmod 777 /path/to/cache.sqlite\n    ```\n\n\n## How to test\n\n- on Unix/Linux:\n   ```bash\n   cd /path/to/zend-cache-sqlite3-pdo\n   vendor/bin/phpunit test\n   ```\n- on Windows:\n   ```bash\n   cd \\path\\to\\zend-cache-sqlite3-pdo\n   vendor\\bin\\phpunit.bat test\n   ```\n\n\n## History\n\n1. [gencer/zend-cache-sqlite3](https://github.com/gencer/zend-cache-sqlite3) started the project, with instructions on how to manually copy and paste the code to the suitable Zend Framework's subfolder. PDO and native driver versions are provided together.\n1. [tttptd/zend-cache-sqlite3](https://github.com/tttptd/zend-cache-sqlite3) added a basic Composer-compliant structure, but left the manual installation and the two versions together.\n1. I've added [the official Zend Framework 1 package](https://github.com/zendframework/zf1) as requirement and split the original package into two different packages: this one and [francescozanoni/zend-cache-sqlite3-native](https://github.com/francescozanoni/zend-cache-sqlite3-native), in order to let the final user choose and handle requirements accordingly. The engine code (src/Zend/Cache/Backend/Sqlite3.php) was taken as-is from the mentioned repositories, I've only wrapped it into a Composer-compliant file/folder structure.\n\n\n## References\n\n  * https://framework.zend.com/manual/1.12/en/zend.cache.html\n  * https://github.com/gencer/zend-cache-sqlite3\n  * https://github.com/tttptd/zend-cache-sqlite3\n  * https://github.com/francescozanoni/zend-cache-sqlite3-native\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrancescozanoni%2Fzend-cache-sqlite3-pdo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrancescozanoni%2Fzend-cache-sqlite3-pdo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrancescozanoni%2Fzend-cache-sqlite3-pdo/lists"}