Name Date Size #Lines LOC

..03-Nov-2024-

.github/H05-Jul-2024-

.well-known/H06-Feb-2024-

archive/HToday-

backend/H07-Dec-2023-

bin/H02-Oct-2024-

conferences/H07-Dec-2023-

distributions/H11-Dec-2019-

fonts/H11-Dec-2019-

images/H02-Jul-2024-

include/HToday-

js/H14-Nov-2024-

license/H26-Oct-2024-

manual/H14-Nov-2024-

pear/H07-Dec-2023-

releases/HToday-

src/H14-Nov-2024-

styles/H02-Nov-2024-

tests/H20-Aug-2024-

.editorconfigH A D18-Jul-2022187 1511

.gitattributesH A D11-Dec-2019103 32

.gitignoreH A D20-Aug-2024177 1311

.gitmodulesH A D29-Mar-2021102 43

.htaccessH A D20-Aug-202482 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 DToday320.7 KiB7,5177,207

MakefileH A D20-Aug-20241.4 KiB4232

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 D28-Oct-2024723 3534

composer.lockH A D06-Nov-2024145.1 KiB4,1234,122

contact.phpH A D09-Jul-20242.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 D14-Nov-20242.5 KiB9271

download-docs.phpH A D14-Nov-20247 KiB228184

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

downloads.phpH A D24-Sep-20244 KiB131111

elephpant.phpH A D07-Dec-20231 KiB4134

eol.phpH A D06-Dec-20233.2 KiB7465

error.phpH A D14-Nov-202428.6 KiB733543

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 D26-Oct-20243.1 KiB8470

git-php.phpH A D26-Oct-202415.6 KiB416379

git.phpH A D01-Jun-20246 KiB202172

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

humans.txtH A D11-Dec-201938 21

index.phpH A D30-Oct-20247.8 KiB218179

labels.rdfH A D11-Dec-20191.3 KiB3732

lookup-form.phpH A D02-Nov-2024707 3520

mailing-lists.phpH A D04-Aug-202414.1 KiB398328

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

menu.phpH A D02-Nov-2024608 3216

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

mirror.phpH A D14-Nov-20242.6 KiB10074

mirroring-troubles.phpH A D21-Jul-20243.9 KiB114100

mirroring.phpH A D21-Jul-20246.9 KiB211172

mirrors.phpH A D07-Dec-2023120 74

mod.phpH A D07-Dec-20231.4 KiB6541

my.phpH A D14-Nov-20246.3 KiB209147

package.jsonH A D20-Aug-2024135 98

playwright.config.tsH A D02-Nov-20241.3 KiB4024

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 D26-Oct-20247.3 KiB190153

software.phpH A D22-Aug-2022979 3126

submit-event.phpH A D23-Jun-202410 KiB278234

support.phpH A D03-Sep-20243.5 KiB11091

supported-versions.phpH A D10-May-20244 KiB12097

thanks.phpH A D06-Aug-20247.7 KiB226197

unsub.phpH A D27-Jul-20246.2 KiB175147

urlhowto.phpH A D17-Nov-20225.8 KiB176155

yarn.lockH A D20-Aug-20241.8 KiB4234

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