{"id":19327696,"url":"https://github.com/antidot-framework/installer","last_synced_at":"2026-05-14T18:32:26.971Z","repository":{"id":40558929,"uuid":"289307108","full_name":"antidot-framework/installer","owner":"antidot-framework","description":null,"archived":false,"fork":false,"pushed_at":"2022-11-08T18:00:50.000Z","size":55,"stargazers_count":1,"open_issues_count":8,"forks_count":1,"subscribers_count":2,"default_branch":"1.0.x","last_synced_at":"2025-02-24T06:33:08.211Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/antidot-framework.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"kpicaza"}},"created_at":"2020-08-21T15:47:20.000Z","updated_at":"2021-11-20T09:26:47.000Z","dependencies_parsed_at":"2023-01-21T06:01:54.691Z","dependency_job_id":null,"html_url":"https://github.com/antidot-framework/installer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/antidot-framework/installer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antidot-framework%2Finstaller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antidot-framework%2Finstaller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antidot-framework%2Finstaller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antidot-framework%2Finstaller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antidot-framework","download_url":"https://codeload.github.com/antidot-framework/installer/tar.gz/refs/heads/1.0.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antidot-framework%2Finstaller/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33037820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-10T02:18:11.741Z","updated_at":"2026-05-14T18:32:26.955Z","avatar_url":"https://github.com/antidot-framework.png","language":"PHP","funding_links":["https://github.com/sponsors/kpicaza"],"categories":[],"sub_categories":[],"readme":"Antidot Framework Installer\n=================\n\n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/antidot-framework/installer/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/antidot-framework/installer/?branch=master)\n[![Code Coverage](https://scrutinizer-ci.com/g/antidot-framework/installer/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/antidot-framework/installer/?branch=master)\n[![Build Status](https://scrutinizer-ci.com/g/antidot-framework/installer/badges/build.png?b=master)](https://scrutinizer-ci.com/g/antidot-framework/installer/build-status/master)\n[![Code Intelligence Status](https://scrutinizer-ci.com/g/antidot-framework/installer/badges/code-intelligence.svg?b=master)](https://scrutinizer-ci.com/code-intelligence)\n[![Maintainability](https://api.codeclimate.com/v1/badges/aaa9bb8ececfaa6276b3/maintainability)](https://codeclimate.com/github/antidot-framework/installer/maintainability)\n\nAntidot Framework skeleton installer. This package let you choosing between different types of Antidot framework project skeletons:\n\n* Classic Web App\n* Serverless App\n* Console Line Tool\n* Micro Http App\n* React Http App\n\n## Requirements\n\n* PHP \u003e= 7.4.0 for current\n* Composer\n\n## Micro HTTP App\n\nLightweight PSR-15 middleware application.\n\n### Dependencies\n\n* [Antidot Framework]()\n* [Antidot Container]()\n* [Antidot Fast Router Adapter]()\n\n\n### Routing\n\nYou can add your routes with it custom middlewares in `public/index.php` file, take a look at the example:\n\n```php \n\u003c?php\n// public/index.php\ndeclare(strict_types=1);\n\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse Psr\\Http\\Message\\ResponseInterface;\n...\n\n    // Application Routes    \n    $app-\u003eget('/', [\n        static function(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface {\n            $request = $request-\u003ewithAttribute('docs_url', 'https://antidotfw.io');\n            return $handler-\u003ehandle($request);\n        },\n        static function(ServerRequestInterface $request): ResponseInterface {\n            return new JsonResponse([\n                'message' =\u003e 'Welcome to Antidot Framework Micro HTTP App.',\n                'docs' =\u003e $request-\u003egetAttribute('docs_url'),\n            ]);\n        }\n    ], 'homepage');\n...\n\n```\n\n### File structure\n\n```\nconfig/\n    config.php\n    container.php\n    framework.prod.php\npublic/\n    index.php\ntest/\nvar/\n    cache/\n.gitignore\ncomposer.json\nphpcs.xml.dist\nphpunit.xml.dist\nREADME.md        \n```\n\n## Docker environment\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantidot-framework%2Finstaller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantidot-framework%2Finstaller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantidot-framework%2Finstaller/lists"}