{"id":22888260,"url":"https://github.com/kentaroutakeda/docker-php-src","last_synced_at":"2026-02-07T21:03:52.782Z","repository":{"id":207185373,"uuid":"718628069","full_name":"KentarouTakeda/docker-php-src","owner":"KentarouTakeda","description":"php-src development environment using Docker Compose and VSCode","archived":false,"fork":false,"pushed_at":"2025-02-02T02:33:33.000Z","size":21,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-05T11:49:08.389Z","etag":null,"topics":["docker","php","php-src","vscode"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/KentarouTakeda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null}},"created_at":"2023-11-14T13:33:46.000Z","updated_at":"2025-07-25T03:55:58.000Z","dependencies_parsed_at":"2024-03-20T06:30:54.046Z","dependency_job_id":"d188cdde-d8af-474d-a334-49242d366caf","html_url":"https://github.com/KentarouTakeda/docker-php-src","commit_stats":null,"previous_names":["kentaroutakeda/docker-php-src"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KentarouTakeda/docker-php-src","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KentarouTakeda%2Fdocker-php-src","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KentarouTakeda%2Fdocker-php-src/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KentarouTakeda%2Fdocker-php-src/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KentarouTakeda%2Fdocker-php-src/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KentarouTakeda","download_url":"https://codeload.github.com/KentarouTakeda/docker-php-src/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KentarouTakeda%2Fdocker-php-src/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29208176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T20:33:12.493Z","status":"ssl_error","status_checked_at":"2026-02-07T20:30:47.381Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["docker","php","php-src","vscode"],"created_at":"2024-12-13T20:47:31.975Z","updated_at":"2026-02-07T21:03:52.761Z","avatar_url":"https://github.com/KentarouTakeda.png","language":"Dockerfile","readme":"# docker-php-src\n\n[php-src](https://github.com/php/php-src) development with Docker Compose and [VSCode Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)\n\n## How to get started\n\n*Make sure you have the Dev Containers extension installed in VSCode.*\n\n1. Clone this project and open in VSCode\n2. Select *Dev Containers: Reopen in Container* from the command palette\n3. Obtaining and building source code as follows:\n\n### Obtaining and building source code\n\nWhen connecting to the container, the current directory is set to /home/build/php-src.\nThen enter the following command:\n\n```bash\n# Obtain source code\ngit clone https://github.com/php/php-src.git ./\n\n# Generate configure\n./buildconf -f\n\n# **For example:** configure the build settings as follows:\n./configure \\\n  --enable-bcmath \\\n  --enable-calendar \\\n  --enable-dba \\\n  --enable-debug \\\n  --enable-dl-test=shared \\\n  --enable-exif \\\n  --enable-ftp \\\n  --enable-intl \\\n  --enable-gd \\\n  --enable-mbstring \\\n  --enable-option-checking=fatal \\\n  --enable-pcntl \\\n  --enable-shmop \\\n  --enable-soap \\\n  --enable-sockets \\\n  --enable-sysvmsg \\\n  --enable-sysvsem \\\n  --enable-sysvshm \\\n  --enable-xmlreader \\\n  --enable-zend-test \\\n  --with-bz2 \\\n  --with-curl \\\n  --with-ffi \\\n  --with-freetype \\\n  --with-gettext \\\n  --with-gmp \\\n  --with-iconv \\\n  --with-jpeg \\\n  --with-libxml \\\n  --with-mhash \\\n  --with-mysqli=mysqlnd \\\n  --with-openssl \\\n  --with-pdo-firebird \\\n  --with-pdo-mysql=mysqlnd \\\n  --with-pdo-pgsql \\\n  --with-pdo-sqlite \\\n  --with-pgsql \\\n  --with-readline \\\n  --with-sodium \\\n  --with-tidy \\\n  --with-webp \\\n  --with-xsl \\\n  --with-zip \\\n  --with-zlib \\\n\n# Build the binaries\nmake -j$(nproc)\n```\n\n## Remarks\n\n* You can connect to PostgreSQL or MySQL by simply typing `psql` / `mysql`. No command line options are required.\n* `./sapi/cli/` is set in PATH. Just run `php` and the binary you built will be executed.\n\n## Contribution\n\nI want to support as many extensions and libraries as possible.\nIf there is something that should be addressed on a priority basis,\nplease open an issue. Pull requests are also welcome.\n\n## License\n\nMIT\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentaroutakeda%2Fdocker-php-src","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkentaroutakeda%2Fdocker-php-src","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentaroutakeda%2Fdocker-php-src/lists"}