Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.4.0 #260

Merged
merged 34 commits into from
Jul 21, 2020
Merged

2.4.0 #260

Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5753a00
Improve composer setup
shivammathur Jul 7, 2020
d313593
Bump cache key
shivammathur Jul 8, 2020
1d50c4a
Set ini values after coverage setup
shivammathur Jul 8, 2020
f64ddde
Show xdebug.mode=coverage log for Xdebug 3.0
shivammathur Jul 8, 2020
262202d
Fixed xdebug version for PHP 5.6 and 7.0
GrahamCampbell Jul 11, 2020
0437607
Update extensions.test.ts
GrahamCampbell Jul 11, 2020
8ba779d
Merge pull request #244 from GrahamCampbell/patch-1
shivammathur Jul 11, 2020
5fc5a95
Fix coverage
shivammathur Jul 11, 2020
8dee767
Install only cli on linux
shivammathur Jul 11, 2020
7a59874
Improve updating lists
shivammathur Jul 11, 2020
9d042b2
Patch OpenSSL binaries for PHP 5.3 and 5.4 on Windows
shivammathur Jul 14, 2020
13a3d9d
Fix support for pre-release extensions
shivammathur Jul 14, 2020
4af7e96
Remove sudo for Blackfire config when it's not needed
lolautruche Jul 15, 2020
9845a63
Merge pull request #249 from lolautruche/fix-blackfire
shivammathur Jul 15, 2020
a965723
Set memory_limit=-1 on Windows and macOS
shivammathur Jul 18, 2020
530929f
Bump lodash from 4.17.15 to 4.17.19
dependabot[bot] Jul 18, 2020
47b8d68
Enhancement: Add ergebnis/composer-normalize as tool
localheinz Jul 18, 2020
c12fad8
Enhancement: Add maglnet/ComposerRequireChecker as tool
localheinz Jul 18, 2020
87a69f9
Merge pull request #255 from localheinz/feature/composer-require-checker
shivammathur Jul 18, 2020
4391cf8
Fix warning in add_pdo_extension
shivammathur Jul 19, 2020
8efcf46
Add support for oci8 and pdo_oci
shivammathur Jul 15, 2020
8283757
Add ionCube Loader support
shivammathur Jul 19, 2020
db03758
Enhancement: Add composer-unused/composer-unused as tool
localheinz Jul 19, 2020
57ecdba
Fix: Keep list of tools sorted
localheinz Jul 19, 2020
7eea3d8
Merge pull request #256 from localheinz/fix/sort
shivammathur Jul 19, 2020
d35633e
Merge branch 'develop' into feature/composer-unused
shivammathur Jul 19, 2020
f3641e0
Merge pull request #257 from localheinz/feature/composer-unused
shivammathur Jul 19, 2020
4dcf9cd
Fix: Typo
localheinz Jul 19, 2020
380b680
Merge pull request #258 from localheinz/fix/typo
shivammathur Jul 19, 2020
a764546
Fix: Keep extensions and options sorted
localheinz Jul 19, 2020
a13373a
Merge pull request #259 from localheinz/fix/sort
shivammathur Jul 19, 2020
d2f865c
Remove phpbrew config
shivammathur Jul 19, 2020
25d9bbc
Update README and licensing information
shivammathur Jul 20, 2020
87f8073
Bump version to 2.4.0
shivammathur Jul 20, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Install only cli on linux
  • Loading branch information
shivammathur committed Jul 11, 2020
commit 8dee767b8278d6e5a48010811234994fe90bdfff
4 changes: 2 additions & 2 deletions src/scripts/linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ php_semver() {
# Function to install packaged PHP
add_packaged_php() {
update_lists
IFS=' ' read -r -a packages <<< "$(echo "curl mbstring xml intl" | sed "s/[^ ]*/php$version-&/g")"
$apt_install php"$version" "${packages[@]}"
IFS=' ' read -r -a packages <<< "$(echo "cli curl mbstring xml intl" | sed "s/[^ ]*/php$version-&/g")"
$apt_install "${packages[@]}"
}

# Function to update PHP.
Expand Down