{"id":36334549,"url":"https://github.com/francescozanoni/zend-cache-sqlite3-native","last_synced_at":"2026-01-11T12:04:15.950Z","repository":{"id":62506984,"uuid":"111080007","full_name":"francescozanoni/zend-cache-sqlite3-native","owner":"francescozanoni","description":"SQLite 3 cache engine for Zend Framework 1, based on native driver","archived":false,"fork":false,"pushed_at":"2017-11-23T21:12:57.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-08T10:48:08.587Z","etag":null,"topics":["cache","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:45:40.000Z","updated_at":"2017-11-24T21:41:21.000Z","dependencies_parsed_at":"2022-11-02T12:31:25.617Z","dependency_job_id":null,"html_url":"https://github.com/francescozanoni/zend-cache-sqlite3-native","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/francescozanoni/zend-cache-sqlite3-native","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-native","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-native/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-native/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-native/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/francescozanoni","download_url":"https://codeload.github.com/francescozanoni/zend-cache-sqlite3-native/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francescozanoni%2Fzend-cache-sqlite3-native/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28302193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T11:18:18.743Z","status":"ssl_error","status_checked_at":"2026-01-11T11:07:56.842Z","response_time":60,"last_error":"SSL_read: 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","sqlite","sqlite3","zend-framework","zendframework"],"created_at":"2026-01-11T12:04:15.879Z","updated_at":"2026-01-11T12:04:15.942Z","avatar_url":"https://github.com/francescozanoni.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SQLite 3 cache engine for Zend Framework 1 (native driver) [![Build Status](https://travis-ci.org/francescozanoni/zend-cache-sqlite3-native.svg?branch=master)](https://travis-ci.org/francescozanoni/zend-cache-sqlite3-native)\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-native\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-native\n   vendor/bin/phpunit test\n   ```\n- on Windows:\n   ```bash\n   cd \\path\\to\\zend-cache-sqlite3-native\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-pdo](https://github.com/francescozanoni/zend-cache-sqlite3-pdo), 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-pdo\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrancescozanoni%2Fzend-cache-sqlite3-native","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrancescozanoni%2Fzend-cache-sqlite3-native","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrancescozanoni%2Fzend-cache-sqlite3-native/lists"}