{"id":18478322,"url":"https://github.com/zaphyr-org/app","last_synced_at":"2025-06-24T21:04:12.347Z","repository":{"id":224414668,"uuid":"737888366","full_name":"zaphyr-org/app","owner":"zaphyr-org","description":"A skeleton application based on the ZAPHYR framework.","archived":false,"fork":false,"pushed_at":"2025-06-05T15:32:11.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-05T16:35:49.573Z","etag":null,"topics":["application","framework","php","skeleton","zaphyr"],"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/zaphyr-org.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-01T21:20:53.000Z","updated_at":"2025-06-05T15:32:12.000Z","dependencies_parsed_at":"2024-12-16T21:21:25.332Z","dependency_job_id":"9f93c485-fec0-4395-ae6a-e24c76d88e54","html_url":"https://github.com/zaphyr-org/app","commit_stats":null,"previous_names":["zaphyr-org/app"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/zaphyr-org/app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaphyr-org%2Fapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaphyr-org%2Fapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaphyr-org%2Fapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaphyr-org%2Fapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zaphyr-org","download_url":"https://codeload.github.com/zaphyr-org/app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaphyr-org%2Fapp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261756534,"owners_count":23205149,"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":["application","framework","php","skeleton","zaphyr"],"created_at":"2024-11-06T12:09:40.798Z","updated_at":"2025-06-24T21:04:12.322Z","avatar_url":"https://github.com/zaphyr-org.png","language":"PHP","readme":"\u003e [!WARNING]\n\u003e The app does not yet have a stable version. It is still under development.\n\n![License](https://img.shields.io/github/license/zaphyr-org/app?style=for-the-badge)\n![Version](https://img.shields.io/packagist/v/zaphyr-org/app?style=for-the-badge)\n![Downloads](https://img.shields.io/packagist/dt/zaphyr-org/app?style=for-the-badge)\n![Stars](https://img.shields.io/github/stars/zaphyr-org/app?style=for-the-badge)\n![Issues](https://img.shields.io/github/issues/zaphyr-org/app?style=for-the-badge)\n\n# Skeleton Application\n\nUse this skeleton application to start your next project with ZAPHYR. This application is pre-configured with the\n[ZAPHYR framework](https://github.com/zaphyr-org/framework) and includes a basic directory structure, configuration\nfiles, and a sample controller and view.\n\nThis skeleton application is optimized for Composer, making it quick and easy to set up a new application.\n\n## System Requirements\n\nBefore you start, ensure the following are installed on your system:\n\n* [PHP](https://www.php.net) 8.1 or higher, along with the following PHP extensions:\n    * [Ctype](https://www.php.net/book.ctype)\n    * [DOM](https://www.php.net/book.dom)\n    * [Fileinfo](https://www.php.net/book.fileinfo)\n    * [JSON](https://www.php.net/book.json)\n    * [libxml](https://www.php.net/book.libxml)\n    * [Multibyte String](https://www.php.net/book.mbstring)\n    * [OpenSSL](https://www.php.net/book.openssl)\n    * [SimpleXML](https://www.php.net/book.simplexml)\n* [Composer](https://getcomposer.org/)\n* A [web server](https://www.php.net/manual/features.commandline.webserver.php) with URL rewriting capability\n\n\u003e [!TIP]\n\u003e ZAPHYR requires PHP 8.1 as the minimum version. However, we recommend using the\n\u003e [latest stable version of PHP](https://www.php.net/supported-versions.php) for the best experience.\n\n## Installation\n\nThis guide will walk you through the process of creating a new ZAPHYR application using the skeleton application.\n\n### Create application\n\nTo create a new application, open a terminal (either Command Prompt or Terminal app, depending on your OS) and run the\nfollowing Composer command from the directory where you want to install your application:\n\n```console\ncomposer create-project zaphyr-org/app my-app\n```\n\nThis command installs a fresh skeleton application in a directory named `my-app`. Feel free to replace `my-app` with\nyour desired application name.\n\n### Setup and run application\n\nAfter creating the application, navigate to your application directory (`my-app`):\n\n```console\ncd my-app\n```\n\nSet the `APP_URL` environment variable in the `.env` file at the root of your project directory:\n\n```bash\nAPP_URL=http://localhost:8000\n```\n\nTo start the [built-in PHP web server](https://www.php.net/manual/features.commandline.webserver.php) from the root of\nyour project, run the following command:\n\n```console\nphp -S localhost:8000 -t public\n```\n\nThe application is now running on `http://localhost:8000`. You can access it in your browser by visiting the URL.\n\n## Documentation\n\nRead the full [documentation](https://zaphyr.org/docs/framework/latest/welcome) to learn more about the framework.\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Issues\n\nBug reports and feature requests can be submitted on the [GitHub Issue Tracker](https://github.com/zaphyr-org/app/issues).\n\n## Security\n\nIf you discover security related issues, please email security@zaphyr.org **instead of using the issue tracker!**\n\n## Contributing\n\nPlease see [CONTRIBUTING](https://zaphyr.org/docs/contributing) for details.\n\n## Code of Conduct\n\nPlease see [CODE OF CONDUCT](https://zaphyr.org/docs/code-of-conduct) for details.\n\n## License\n\nThis project is licensed under the MIT license. See [LICENSE](LICENSE.md) for more information.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaphyr-org%2Fapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzaphyr-org%2Fapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaphyr-org%2Fapp/lists"}