{"id":13805816,"url":"https://github.com/phalcon/incubator","last_synced_at":"2025-05-13T21:31:36.039Z","repository":{"id":5648568,"uuid":"6857360","full_name":"phalcon/incubator","owner":"phalcon","description":"Incubator adapters/functionality for the Phalcon PHP Framework","archived":false,"fork":false,"pushed_at":"2023-07-05T11:44:58.000Z","size":2411,"stargazers_count":731,"open_issues_count":16,"forks_count":342,"subscribers_count":90,"default_branch":"master","last_synced_at":"2024-07-24T05:47:25.838Z","etag":null,"topics":["acl","aerospike-adapter","database-adapter","incubator","mongo-adapter","mongodb-adapter","mysql-adapter","phalcon","php","redis-adapter"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"RisingStack/node-style-guide","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phalcon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2012-11-25T23:45:51.000Z","updated_at":"2024-04-28T16:38:59.000Z","dependencies_parsed_at":"2022-08-24T00:51:17.840Z","dependency_job_id":"67a2ea3c-4460-475b-8d3c-7f7a93d7bd82","html_url":"https://github.com/phalcon/incubator","commit_stats":{"total_commits":1111,"total_committers":161,"mean_commits":6.900621118012422,"dds":0.801980198019802,"last_synced_commit":"4883d9009a9d651308bfc201a0e9440c0ff692e2"},"previous_names":[],"tags_count":45,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fincubator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fincubator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fincubator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fincubator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phalcon","download_url":"https://codeload.github.com/phalcon/incubator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":213870459,"owners_count":15650178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["acl","aerospike-adapter","database-adapter","incubator","mongo-adapter","mongodb-adapter","mysql-adapter","phalcon","php","redis-adapter"],"created_at":"2024-08-04T01:01:05.143Z","updated_at":"2024-08-04T01:05:21.574Z","avatar_url":"https://github.com/phalcon.png","language":"PHP","funding_links":["https://opencollective.com/phalcon","https://opencollective.com/phalcon/"],"categories":["Miscellaneous"],"sub_categories":[],"readme":"# Phalcon Incubator\n\n[![Build Status](https://img.shields.io/travis/phalcon/incubator/master.svg?style=flat-square)](https://travis-ci.org/phalcon/incubator)\n[![Latest Version](https://img.shields.io/packagist/v/phalcon/incubator.svg?style=flat-square)](https://github.com/phalcon/incubator/releases)\n[![Software License](https://img.shields.io/badge/license-BSD--3-brightgreen.svg?style=flat-square)](https://github.com/phalcon/incubator/blob/master/LICENSE.txt)\n[![Total Downloads](https://img.shields.io/packagist/dt/phalcon/incubator.svg?style=flat-square)](https://packagist.org/packages/phalcon/incubator)\n[![Daily Downloads](https://img.shields.io/packagist/dd/phalcon/incubator.svg?style=flat-square)](https://packagist.org/packages/phalcon/incubator)\n\nThis is a repository to publish/share/experiment with new adapters, prototypes or functionality that can potentially be incorporated into the [Phalcon Framework](https://github.com/phalcon/cphalcon).\n\nWe also welcome submissions of snippets from the community, to further extend the framework.\n\nThe code in this repository is written in PHP.\n\n## Installation\n\n### Installing via Composer\n\nInstall Composer in a common location or in your project:\n\n```bash\ncurl -s http://getcomposer.org/installer | php\n```\n\nThen create the `composer.json` file as follows:\n\n```json\n{\n    \"require\": {\n        \"phalcon/incubator\": \"^3.4\"\n    }\n}\n```\n\nIf you are still using Phalcon 2.0.x, create the `composer.json` file as follows:\n\n```json\n{\n    \"require\": {\n        \"phalcon/incubator\": \"^2.0\"\n    }\n}\n```\n\nRun the composer installer:\n\n```bash\n$ php composer.phar install\n```\n\n### Installing via GitHub\n\nJust clone the repository in a common location or inside your project:\n\n```\ngit clone https://github.com/phalcon/incubator.git\n```\n\nFor a specific git branch (eg 2.0.13) please use:\n\n```\ngit clone -b 2.0.13 git@github.com:phalcon/incubator.git\n```\n\n## Autoloading from the Incubator\n\nAdd or register the following namespace strategy to your `Phalcon\\Loader` in order\nto load classes from the incubator repository:\n\n```php\n\n$loader = new Phalcon\\Loader();\n\n$loader-\u003eregisterNamespaces(\n    [\n        'Phalcon' =\u003e '/path/to/incubator/Library/Phalcon/',\n    ]\n);\n\n$loader-\u003eregister();\n```\n\n## Testing\n\nTests are located in `tests/` and use Codeception. See [tests/README.md](tests/README.md).\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Contributions Index\n\nSee [INDEX.md](INDEX.md).\n\n## Sponsors\n\nBecome a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/phalcon#sponsor)]\n\n\u003ca href=\"https://opencollective.com/phalcon/#contributors\"\u003e\n\u003cimg src=\"https://opencollective.com/phalcon/tiers/sponsors.svg?avatarHeight=48\u0026width=800\"\u003e\n\u003c/a\u003e\n\n## Backers\n\nSupport us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/phalcon#backer)]\n\n\u003ca href=\"https://opencollective.com/phalcon/#contributors\"\u003e\n\u003cimg src=\"https://opencollective.com/phalcon/tiers/backers.svg?avatarHeight=48\u0026width=800\u0026height=200\"\u003e\n\u003c/a\u003e\n\n## License\n\nIncubator is open-sourced software licensed under the [New BSD License](https://github.com/phalcon/incubator/blob/master/LICENSE.txt).\u003cbr\u003e\n© 2011-2018, Phalcon Framework Team\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphalcon%2Fincubator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphalcon%2Fincubator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphalcon%2Fincubator/lists"}