Rémy a5c054ea9e Breaking, change autoupdate definition to use the same logic as the
architecture by the core / update the affected manifests / ability to
change extract_dir based on arch / add nssm autoupdate
2017-01-01 17:30:18 +01:00

62 lines
2.2 KiB
JSON

{
"homepage": "http://windows.php.net",
"version": "7.1.0",
"license": "https://www.php.net/license/",
"architecture": {
"64bit": {
"url": [
"http://windows.php.net/downloads/releases/php-7.1.0-Win32-VC14-x64.zip",
"https://raw.githubusercontent.com/madbub/scoop-php/master/64-bit/vcruntime140.dll"
],
"hash": [
"sha1:48b99e4aae06b6ca4933689277bd3ff836398eb8",
"acf65e565021f2017815fc5ec8a3145cf6c15e75c132cf23a378cc943e68327c"
]
},
"32bit": {
"url": [
"http://windows.php.net/downloads/releases/php-7.1.0-Win32-VC14-x86.zip",
"https://raw.githubusercontent.com/MPLew-is/scoop-wamp/master/visual-c-redistributables/14/32-bit/vcruntime140.dll"
],
"hash": [
"sha1:afb042692d01848016c64246672601a28efffead",
"b7c13f8519340257ba6ae3129afce961f137e394dde3e4e41971b9f912355f5e"
]
}
},
"bin": [
"php.exe",
"php-cgi.exe"
],
"env_set": {
"PHP_INI_SCAN_DIR": "$dir\\..\\conf"
},
"post_install": "
#Copy PHP configuration file to expected location
cp \"$dir\\php.ini-production\" \"$dir\\php.ini\"
#Enable extensions to be found in installation-relative folder (the default is to search C:/php)
(gc \"$dir\\php.ini\") | % { $_ -replace '; extension_dir = \"ext\"', 'extension_dir = \"ext\"' } | sc \"$dir\\php.ini\"
",
"checkver": {
"url": "http://windows.php.net/download/",
"re": "<h3 id=\"php-7.1\".*?>.*?\\(([\\d.]+)\\)</h3>"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "http://windows.php.net/downloads/releases/php-$version-Win32-VC14-x64.zip"
},
"32bit": {
"url": "http://windows.php.net/downloads/releases/php-$version-Win32-VC14-x86.zip"
}
},
"hash": {
"mode": "extract",
"type": "sha1",
"url": "http://windows.php.net/downloads/releases/sha1sum.txt",
"find": "([a-z0-9]{40})\\s+(?:$basename)"
}
}
}