-
-
Notifications
You must be signed in to change notification settings - Fork 970
/
php.json
61 lines (61 loc) · 2.05 KB
/
php.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"version": "8.3.14",
"description": "A popular general-purpose scripting language that is especially suited to web development. (thread safe)",
"homepage": "https://windows.php.net/",
"license": "PHP-3.01",
"suggest": {
"vcredist": "extras/vcredist2022"
},
"architecture": {
"64bit": {
"url": "https://windows.php.net/downloads/releases/php-8.3.14-Win32-vs16-x64.zip",
"hash": "3cd79691564c3634aec79f721773bf9308f8f4698904ca7ca27281ec099480d6"
},
"32bit": {
"url": "https://windows.php.net/downloads/releases/php-8.3.14-Win32-vs16-x86.zip",
"hash": "b78c3334b611e0a2a9cfe19bc5ec1f582b12ecc9318708ecadb640907ddc3f63"
}
},
"pre_install": [
"# Create directory for custom PHP configuration",
"if (!(Test-Path \"$dir\\cli\\conf.d\")) {",
" (New-Item -Type directory \"$dir\\cli\\conf.d\") | Out-Null",
"}"
],
"post_install": [
"# Enable extensions to be found in installation-relative folder (the default is to search C:/php)",
"(Get-Content \"$dir\\cli\\php.ini\") | % { $_ -replace ';\\s?(extension_dir = \"ext\")', '$1' } | Set-Content \"$dir\\cli\\php.ini\""
],
"bin": [
"php.exe",
"php-cgi.exe",
"phpdbg.exe"
],
"env_set": {
"PHP_INI_SCAN_DIR": "$dir\\cli;$dir\\cli\\conf.d;"
},
"persist": [
"cli",
[
"php.ini-production",
"cli\\php.ini"
]
],
"checkver": {
"url": "https://windows.php.net/download/",
"regex": "<h3 id=\"php-[\\d.]+\".*?>.*?\\(([\\d.]+)\\)</h3>"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://windows.php.net/downloads/releases/php-$version-Win32-vs16-x64.zip"
},
"32bit": {
"url": "https://windows.php.net/downloads/releases/php-$version-Win32-vs16-x86.zip"
}
},
"hash": {
"url": "$baseurl/sha256sum.txt"
}
}
}