{"id":37410260,"url":"https://github.com/ardillo-php/ext","last_synced_at":"2026-01-16T05:55:13.123Z","repository":{"id":182882541,"uuid":"667164085","full_name":"ardillo-php/ext","owner":"ardillo-php","description":"PHP extension for building native desktop applications","archived":false,"fork":false,"pushed_at":"2024-06-30T18:26:53.000Z","size":364,"stargazers_count":19,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-07-03T23:50:25.134Z","etag":null,"topics":["ardillo","asyncio","desktop","desktop-app","extension","gui","php","php-extension"],"latest_commit_sha":null,"homepage":"https://ardillo.dev","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ardillo-php.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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}},"created_at":"2023-07-16T21:09:41.000Z","updated_at":"2024-06-21T09:20:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"abf57918-83d4-40f8-b903-a09ca09323b8","html_url":"https://github.com/ardillo-php/ext","commit_stats":null,"previous_names":["ardillo-php/ext"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ardillo-php/ext","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardillo-php%2Fext","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardillo-php%2Fext/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardillo-php%2Fext/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardillo-php%2Fext/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ardillo-php","download_url":"https://codeload.github.com/ardillo-php/ext/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardillo-php%2Fext/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"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":["ardillo","asyncio","desktop","desktop-app","extension","gui","php","php-extension"],"created_at":"2026-01-16T05:55:12.468Z","updated_at":"2026-01-16T05:55:13.115Z","avatar_url":"https://github.com/ardillo-php.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Ardillo PHP Extension\n\n[![CI Status](https://github.com/ardillo-php/ext/workflows/CI/badge.svg)](https://github.com/ardillo-php/ext/actions/workflows/ci.yaml)\n[![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE)\n\nThe Ardillo extension provides an object-oriented PHP interface to the [libui-ng](https://github.com/libui-ng/libui-ng) library as well as routines for implementing a [ReactPHP event loop](https://github.com/ardillo-php/loop). The end goal is to provide a framework for developing cross-platform desktop applications in PHP, as seen in our [examples](https://github.com/ardillo-php/examples).\n\nPlease head to [ardillo.dev](https://ardillo.dev) for documentation.\n\n### Build requirements\n\n- Your operating system build essentials (Xcode/clang on macOS, build-essential on Linux, MS Visual Studio 2019 on Windows);\n- PHP development headers and tools;\n- Meson/Ninja build system;\n\nFor Linux builds, you will also need the GTK development headers.\n\n### Build and install using PECL\n\nPlease note this method is currently available just for Linux and macOS.\n\nDownload the [latest extension package](https://github.com/ardillo-php/ext/releases/download/v0.1.1/ardillo-0.1.1.tgz) manually or via curl:\n\n```sh\ncurl -s -L https://github.com/ardillo-php/ext/releases/download/v0.1.1/ardillo-0.1.1.tgz -o ardillo.tgz\n```\n\nThen install it using PECL:\n\n```sh\nsudo pecl install ardillo.tgz\n```\n\nThe Ardillo extension has yet to be published on the PECL repository.\n\n### Build from source\n\nAfter cloning the repository, you will need to initialize the submodule then you can proceed to build the extension.\n\nOn unices, you can use the following commands:\n\n```sh\ngit submodule update --init\nphpize\n./configure\nmake -j\nsudo make install\n```\n\nOn Windows, you should use the following commands:\n\n```sh\ngit submodule update --init\ncd libui-ng\nmeson setup build --default-library=shared\nninja -C build\ncd ..\nphpize\nconfigure\nnmake\nnmake install\n```\n\nSince libui-ng is presently built as a shared library, you might want to copy the libui.dll file (`libui-ng\\build\\meson-out\\libui.dll`) to a directory reachable by your Ardillo applications.\n\n### License\n\nThe Ardillo extension is licensed under the [MIT license](LICENSE).\n\n### Acknowledgements\n\nThe Ardillo extension is based on the [libui-ng](https://github.com/libui-ng/libui-ng) library, which is licensed under the [MIT license](https://github.com/libui-ng/libui-ng/blob/master/LICENSE.md).\n\nThe Windows I/O implementation is based on the [wepool](https://github.com/piscisaureus/wepoll) library, which is licensed under the [BSD 2-Clause license](https://github.com/piscisaureus/wepoll/blob/dist/LICENSE).\n\n### Contributing\n\nBug reports (and small patches) can be submitted via the [issue tracker](https://github.com/ardillo-php/ext/issues). Forking the repository and submitting a Pull Request is preferred for substantial patches. Please be sure to read and comply with the [Contributing Terms](CONTRIBUTING.md) document before proceeding.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fardillo-php%2Fext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fardillo-php%2Fext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fardillo-php%2Fext/lists"}