mirror of
				https://github.com/ScoopInstaller/Main.git
				synced 2025-11-04 07:41:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
    "homepage": "http://windows.php.net",
 | 
						|
    "version": "7.1.7",
 | 
						|
    "license": "https://php.net/license/",
 | 
						|
    "architecture": {
 | 
						|
        "64bit": {
 | 
						|
            "url": "http://windows.php.net/downloads/releases/php-7.1.7-Win32-VC14-x64.zip",
 | 
						|
            "hash": "2358fc7687c688f3846f3eb962b0e777d9dcfa2baeb968cb4fdbe5ae6df5df09"
 | 
						|
        },
 | 
						|
        "32bit": {
 | 
						|
            "url": "http://windows.php.net/downloads/releases/php-7.1.7-Win32-VC14-x86.zip",
 | 
						|
            "hash": "90ce1b2c0c2b1c206d6f869e7377606adf310f08a835546eab34335fd4a1922c"
 | 
						|
        }
 | 
						|
    },
 | 
						|
    "bin": [
 | 
						|
        "php.exe",
 | 
						|
        "php-cgi.exe"
 | 
						|
    ],
 | 
						|
    "persist": [
 | 
						|
        "cli",
 | 
						|
        [
 | 
						|
            "php.ini-production",
 | 
						|
            "cli\\php.ini"
 | 
						|
        ]
 | 
						|
    ],
 | 
						|
    "env_set": {
 | 
						|
        "PHP_INI_SCAN_DIR": "$dir\\cli;$dir\\cli\\conf.d;"
 | 
						|
    },
 | 
						|
    "post_install": "
 | 
						|
# Copy ini scan dir from old location before persistent update
 | 
						|
if ((Test-Path \"$dir\\..\\conf\") -and !(Test-Path \"$dir\\cli\\conf.d\")) {
 | 
						|
    Write-Host -ForegroundColor Cyan \"We are moving your php configuration to $dir\\cli\\conf.d\"
 | 
						|
    Move-Item \"$dir\\..\\conf\" \"$dir\\cli\\conf.d\"
 | 
						|
}
 | 
						|
 | 
						|
# Create directory for custom PHP configuration
 | 
						|
if (!(Test-Path \"$dir\\cli\\conf.d\")) {
 | 
						|
    (New-Item -Type directory \"$dir\\cli\\conf.d\") | Out-Null
 | 
						|
}
 | 
						|
 | 
						|
# Enable extensions to be found in installation-relative folder (the default is to search C:/php)
 | 
						|
(gc \"$dir\\cli\\php.ini\") | % { $_ -replace '; extension_dir = \"ext\"', 'extension_dir = \"ext\"' } | sc \"$dir\\cli\\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": {
 | 
						|
            "url": "$baseurl/sha256sum.txt"
 | 
						|
        }
 | 
						|
    },
 | 
						|
    "suggest": {
 | 
						|
        "vcredist": [
 | 
						|
            "extras/vcredist2017"
 | 
						|
        ]
 | 
						|
    }
 | 
						|
}
 |