Name Date Size #Lines LOC

..28-Sep-2023-

.github/H12-Feb-2024-

.well-known/H06-Feb-2024-

archive/H24-Apr-2024-

backend/H07-Dec-2023-

bin/H12-Apr-2024-

conferences/H07-Dec-2023-

distributions/H11-Dec-2019-

fonts/H11-Dec-2019-

images/H07-Dec-2023-

include/H20-Apr-2024-

js/H07-Dec-2023-

license/H22-Aug-2022-

manual/H07-Dec-2023-

pear/H07-Dec-2023-

releases/H12-Apr-2024-

src/H07-Dec-2023-

styles/H17-Apr-2024-

tests/H17-Feb-2024-

.editorconfigH A D18-Jul-2022187 1511

.gitattributesH A D11-Dec-2019103 32

.gitignoreH A D17-Feb-202494 86

.gitmodulesH A D29-Mar-2021102 43

.htaccessH A D11-Dec-201977 54

.php-cs-fixer.phpH A D17-Feb-20242.2 KiB7367

.router.phpH A D07-Dec-2023359 169

ChangeLog-4.phpH A D26-Jul-2021247.2 KiB3,8833,773

ChangeLog-5.phpH A D26-Jul-2021795.9 KiB15,95715,250

ChangeLog-7.phpH A D03-Nov-2022426.4 KiB10,65810,314

ChangeLog-8.phpH A D12-Apr-2024250 KiB5,9635,707

MakefileH A D17-Feb-20241.1 KiB2921

README.mdH A D05-Dec-20231.1 KiB4428

build-setup.phpH A D07-Dec-20237.3 KiB176169

cached.phpH A D22-Aug-20221.4 KiB5233

cal.phpH A D29-Aug-202312.3 KiB397247

composer.jsonH A DToday723 3534

composer.lockH A DToday119.3 KiB3,3973,396

contact.phpH A D29-Nov-20232.3 KiB6559

copyright.phpH A D22-Aug-20221.7 KiB6152

credits.phpH A D07-Dec-2023685 2918

crossdomain.xmlH A D11-Dec-2019407 76

docs.phpH A D22-Aug-20222.4 KiB8669

download-docs.phpH A D07-Dec-20236.9 KiB225183

download-logos.phpH A D16-Sep-202210 KiB381344

downloads.phpH A D07-Dec-20233.2 KiB10590

elephpant.phpH A D07-Dec-20231 KiB4134

eol.phpH A D06-Dec-20233.2 KiB7465

error.phpH A D07-Apr-202427.8 KiB717531

favicon-16x16.pngH A D10-Jun-2022302

favicon-196x196.pngH A D10-Jun-20222.1 KiB

favicon-32x32.pngH A D10-Jun-2022535

favicon.icoH A D10-Jun-20225.3 KiB

favicon.svgH A D10-Jun-20221.1 KiB11

get-involved.phpH A D07-Dec-20233.1 KiB8470

git-php.phpH A D07-Dec-202315.6 KiB416379

git.phpH A D31-Aug-20225.9 KiB199169

gpg-keys.phpH A D07-Dec-2023642 2820

humans.txtH A D11-Dec-201938 21

index.phpH A D02-Feb-20248.8 KiB241196

labels.rdfH A D11-Dec-20191.3 KiB3732

mailing-lists.phpH A D16-Apr-202415 KiB421350

manual-lookup.phpH A D07-Dec-20231,019 3523

mirror-info.phpH A D07-Dec-20231.8 KiB4832

mirror.phpH A D07-Dec-20232.6 KiB9773

mirroring-troubles.phpH A D22-Aug-20224.3 KiB124109

mirroring.phpH A D07-Dec-20239.6 KiB294233

mirrors.phpH A D07-Dec-2023120 74

mod.phpH A D07-Dec-20231.4 KiB6541

my.phpH A D07-Dec-20236.2 KiB209148

privacy.phpH A D22-Aug-20221,010 4032

quickref.phpH A D07-Dec-20233.8 KiB13775

results.phpH A D07-Dec-2023334 2114

robots.txtH A D11-Dec-2019292 1412

search.phpH A D07-Dec-20231.6 KiB6037

security-note.phpH A D22-Aug-20222.9 KiB6257

sitemap.phpH A D22-Aug-20222.6 KiB10280

sitemap.xmlH A D11-Dec-20192.5 KiB125123

sites.phpH A D27-Feb-20248.7 KiB220177

software.phpH A D22-Aug-2022979 3126

submit-event.phpH A D07-Dec-202310 KiB278234

support.phpH A D07-Dec-20233.6 KiB11192

supported-versions.phpH A D06-Dec-20234 KiB12097

thanks.phpH A D17-Oct-202210.3 KiB281252

unsub.phpH A D18-Feb-20246.9 KiB192161

urlhowto.phpH A D17-Nov-20225.8 KiB176155

README.md

1[![Integrate](https://github.com/php/web-php/actions/workflows/integrate.yaml/badge.svg)](https://github.com/php/web-php/actions/workflows/integrate.yaml)
2
3## Local development
4
5This is the git repository for the official www.php.net website.
6
7To setup a local mirror of the website, clone the repository:
8
9```
10git clone https://github.com/php/web-php.git
11```
12
13Change into `web-php`:
14
15```
16cd web-php
17```
18
19Start the built-in web server:
20
21```
22php -S localhost:8080 .router.php
23```
24
25This repository includes most (generated) files that are required for normal
26operation of this website, such as
27
28 - News & events data
29 - Several manual pages (and a translation), see manual/{en,ja}/
30 - User contributed notes for manual pages
31 - A "router" for the builtin PHP webserver
32
33How to set up a full local mirror is described in our Wiki:
34https://wiki.php.net/web/mirror
35
36## Code requirements
37
38Code must function on a vanilla PHP 8.2 installation.
39Please keep this in mind before filing a pull request.
40
41## Contributing
42
43Please have a look at [`CONTRIBUTING.md`](.github/CONTRIBUTING.md).
44