Skip to content

Commit

Permalink
Added php4 source definition
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjapanzer committed Dec 27, 2019
1 parent b7dba93 commit 9b4df86
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions Abstract/abstract-php-version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,26 @@ module Php72Defs
end

module Php73Defs
PHP_SRC_TARBALL = "https://php.net/get/php-7.3.11.tar.bz2/from/this/mirror".freeze
PHP_SRC_TARBALL = "https://php.net/get/php-7.3.13.tar.bz2/from/this/mirror".freeze
PHP_GITHUB_URL = "https://github.com/php/php-src.git".freeze
PHP_VERSION = "7.3.11".freeze
PHP_BRANCH = "PHP-7.3.11".freeze
PHP_VERSION = "7.3.13".freeze
PHP_BRANCH = "PHP-7.3.13".freeze
PHP_FORMULA = "[email protected]".freeze

PHP_CHECKSUM = {
:sha256 => "92d1ff4b13c7093635f1ec338a5e6891ca99b10e65fbcadd527e5bb84d11b5e7",
}.freeze
end

module Php74Defs
PHP_SRC_TARBALL = "https://php.net/get/php-7.4.1.tar.bz2/from/this/mirror".freeze
PHP_GITHUB_URL = "https://github.com/php/php-src.git".freeze
PHP_VERSION = "7.4.1".freeze
PHP_BRANCH = "PHP-7.4.1".freeze
PHP_FORMULA = "[email protected]".freeze

PHP_CHECKSUM = {
:sha256 => "92d1ff4b13c7093635f1ec338a5e6891ca99b10e65fbcadd527e5bb84d11b5e7",
}.freeze
end
end

0 comments on commit 9b4df86

Please sign in to comment.