Name Date Size #Lines LOC

..30-Aug-2022-

.github/H11-Jul-2022-

archive/H16-Mar-2023-

backend/H11-Dec-2019-

bin/H08-Dec-2022-

conferences/H22-Aug-2022-

distributions/H11-Dec-2019-

fonts/H11-Dec-2019-

images/H17-Oct-2022-

include/H16-Mar-2023-

js/H14-Dec-2022-

license/H22-Aug-2022-

manual/H13-Oct-2022-

pear/H11-Dec-2019-

releases/H16-Mar-2023-

src/H29-Jun-2022-

styles/H21-Feb-2023-

tests/H15-Jul-2022-

.editorconfigH A D18-Jul-2022187 1511

.gitattributesH A D11-Dec-2019103 32

.gitignoreH A D11-Jul-2022140 1210

.gitmodulesH A D29-Mar-2021102 43

.htaccessH A D11-Dec-201977 54

.php-cs-fixer.phpH A D30-Sep-20221.3 KiB4943

.router.phpH A D03-Jul-2022341 138

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 D16-Mar-2023146.3 KiB3,5713,415

MakefileH A D11-Jul-2022576 1612

README.mdH A D08-Jul-20221.1 KiB4428

autoload.phpH A D05-Jul-2022616 2918

build-setup.phpH A D22-Aug-20227.3 KiB178169

cached.phpH A D22-Aug-20221.4 KiB5233

cal.phpH A D22-Aug-202212.3 KiB397247

composer.jsonH A D11-Jul-2022561 2827

composer.lockH A D11-Jul-202273.6 KiB2,1202,119

contact.phpH A D22-Aug-20222.1 KiB5751

copyright.phpH A D22-Aug-20221.7 KiB6152

credits.phpH A D22-Aug-2022683 2818

crossdomain.xmlH A D11-Dec-2019407 76

docs.phpH A D22-Aug-20222.4 KiB8669

download-docs.phpH A D22-Aug-20226.9 KiB225183

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

downloads.phpH A D22-Aug-20223.2 KiB10590

elephpant.phpH A D22-Aug-20221 KiB4336

eol.phpH A D28-Nov-20223.1 KiB7364

error.phpH A D09-Jan-202327.4 KiB713524

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 D13-Feb-20233.2 KiB8670

git-php.phpH A D22-Aug-202215.6 KiB416379

git.phpH A D31-Aug-20225.9 KiB199169

gpg-keys.phpH A D20-Apr-2021653 2820

humans.txtH A D11-Dec-201938 21

index.phpH A D08-Dec-20228.2 KiB227184

labels.rdfH A D11-Dec-20191.3 KiB3732

mailing-lists.phpH A D22-Aug-202214.1 KiB395331

manual-lookup.phpH A D12-Jul-20221,018 3423

mirror-info.phpH A D22-Aug-20221.8 KiB4732

mirror.phpH A D28-Sep-20222.6 KiB9773

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

mirroring.phpH A D22-Aug-20229.6 KiB294233

mirrors.phpH A D11-Dec-2019119 64

mod.phpH A D22-Aug-20221.4 KiB6541

my.phpH A D29-Sep-20226.2 KiB209148

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

quickref.phpH A D22-Aug-20223.9 KiB14077

results.phpH A D22-Aug-2022374 2115

robots.txtH A D11-Dec-2019292 1412

search.phpH A D22-Aug-20221.6 KiB5937

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 D22-Aug-20229.1 KiB230185

software.phpH A D22-Aug-2022979 3126

submit-event.phpH A D22-Aug-202210.1 KiB279234

support.phpH A D22-Aug-20223.6 KiB11192

supported-versions.phpH A D22-Aug-20223.9 KiB11996

thanks.phpH A D17-Oct-202210.3 KiB281252

unsub.phpH A D22-Aug-20226.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 7.3 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