Lauris Binde
|
f9f92dc9d8
|
Fix Xdebug warning
Composer incorrectly shows Xdebug warning, even if extension is not loaded, but COMPOSER_ALLOW_XDEBUG is present.
|
2017-01-11 09:45:13 +01:00 |
Jordi Boggiano
|
6a0d5a03d2
|
Update changelog
|
2017-01-07 18:08:37 +01:00 |
Pete Akins
|
95e9ad57d4
|
Don’t add github specials if there is no composer data
This can happen if an identifier doesn’t have a composer.json file (but other identifiers do)
|
2017-01-07 17:58:04 +01:00 |
Jordi Boggiano
|
677e75d168
|
Add phpdoc comment
|
2017-01-07 17:36:47 +01:00 |
Felix Becker
|
5f64cae860
|
Make PluginManager::addPlugin() public
|
2017-01-07 17:34:55 +01:00 |
Jordi Boggiano
|
452dd4b05e
|
Merge pull request #6037 from johnstevenson/xdebug-logic
Fix scanned ini files logic
|
2017-01-04 09:32:58 +01:00 |
johnstevenson
|
d48d11d187
|
Fix scanned ini files logic
|
2017-01-03 19:56:16 +00:00 |
Jordi Boggiano
|
31731a06c2
|
Merge pull request #6023 from stof/add_property
Add missing definition of a property
|
2017-01-02 12:27:45 +01:00 |
Christophe Coevoet
|
4ae2aecc54
|
Add missing definition of a property
|
2017-01-02 12:12:37 +01:00 |
Jordi Boggiano
|
be9abbf9f3
|
Override all php-* versions when php package is defined in config.platform
|
2017-01-02 11:31:47 +01:00 |
Jordi Boggiano
|
0bc75c3fb6
|
Bump memory limit to 1.5G
|
2016-12-31 16:29:31 +01:00 |
Plamen Garkov
|
ab4322148f
|
adding "fatal: unable to access" to authFalures
|
2016-12-31 16:29:12 +01:00 |
Jordi Boggiano
|
476682f207
|
Merge pull request #6015 from johnstevenson/xdebug-ini
Ignore xdebug.ini and process all files, #5995
|
2016-12-30 18:06:38 +01:00 |
johnstevenson
|
4e53d64d4b
|
Ignore xdebug.ini and process all files, #5995
|
2016-12-30 14:51:16 +00:00 |
Jordi Boggiano
|
ad97b01f9c
|
Merge pull request #6012 from stof/fix_repository
Fix the class name for fossil repositories
|
2016-12-30 13:53:48 +01:00 |
Alex Bowers
|
e161218819
|
Refactored xdebughandler
|
2016-12-30 12:46:30 +01:00 |
Jordi Boggiano
|
2c39c43a9e
|
Forward memory limit even if it was overwritten when restarting without xdebug, fixes #6004
|
2016-12-30 12:45:05 +01:00 |
Christophe Coevoet
|
978b87f7bd
|
Fix the class name for fossil repositories
|
2016-12-29 15:16:39 +01:00 |
Jordi Boggiano
|
37bbf1a7c9
|
Merge pull request #5993 from stefangr/fix_bitbucket_dist_install_from_private_repo
Fix dist downloads from bitbucket private repos
|
2016-12-28 19:10:21 +01:00 |
Jordi Boggiano
|
ed0829fed1
|
Simplify code and fix path to composer.json, refs #6001
|
2016-12-28 19:00:22 +01:00 |
Ed Reel
|
afdae9c0e2
|
Do not throw InvalidArgumentException with the 'show' command if the working-dir argument is set and composer.json exists
- This prevents scripts from aborting when looping through a directory of projects
|
2016-12-28 18:50:47 +01:00 |
Jordi Boggiano
|
5ecd9ace59
|
Forward --minor-only flag to show command
|
2016-12-28 18:44:32 +01:00 |
Jordi Boggiano
|
6816acbe27
|
Merge remote-tracking branch 'johnstevenson/xdebug-#5995' into 1.3
|
2016-12-28 17:44:45 +01:00 |
Jordi Boggiano
|
8764876cad
|
Avoid loading xdebug platform package twice, fixes #5995
|
2016-12-28 17:38:45 +01:00 |
Jordi Boggiano
|
c5dcedd0db
|
Hide warning when xdebug is explicitly allowed
|
2016-12-28 17:34:27 +01:00 |
Jordi Boggiano
|
d68362e66f
|
Merge remote-tracking branch 'johnstevenson/xdebug-docs' into 1.3
|
2016-12-28 16:50:46 +01:00 |
johnstevenson
|
25ff290e4c
|
Document COMPOSER_DISABLE_XDEBUG_WARN variable
|
2016-12-28 15:22:00 +00:00 |
johnstevenson
|
d57a89d5af
|
Update xdebug troubleshooting, fixes #5997
|
2016-12-28 12:13:23 +00:00 |
johnstevenson
|
2b8ad7dc2a
|
Clear xdebug version if restart fails, fixes #5995
|
2016-12-27 18:46:21 +00:00 |
Stefan Grootscholten
|
d80d266201
|
Fix dist download from bitbucket.
URL https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
results in the following $pathParts:
array(5) {
[0]=>
string(0) ""
[1]=>
string(5) "ariya"
[2]=>
string(9) "phantomjs"
[3]=>
string(9) "downloads"
[4]=>
string(36) "phantomjs-2.1.1-linux-x86_64.tar.bz2"
}
A dist download URL is like:
https://bitbucket.org/user/repo/get/[git-hash].zip
array(5) {
[0]=>
string(0) ""
[1]=>
string(4) "user"
[2]=>
string(4) "repo"
[3]=>
string(3) "get"
[4]=>
string(14) "[git-hash].zip"
}
|
2016-12-24 21:10:12 +01:00 |
Jordi Boggiano
|
2782d37a15
|
Merge pull request #5992 from AnrDaemon/fix-git-skips-proper
Properly skip GitDownloaderTest if git is not available
|
2016-12-24 01:47:04 +01:00 |
AnrDaemon
|
1d2a949e3e
|
Properly fix git excludes.
Mindless copy-paste never gets old. Sorry. This is fixed proper this time.
|
2016-12-24 03:19:50 +03:00 |
Jordi Boggiano
|
9042147674
|
Merge pull request #5931 from Jean85/patch-1
[Documentation] Update troubleshooting article
|
2016-12-24 01:08:39 +01:00 |
Jordi Boggiano
|
113b446e1f
|
Prepare 1.3 release
|
2016-12-24 00:46:54 +01:00 |
Jordi Boggiano
|
97ccea1abb
|
Merge pull request #5991 from AnrDaemon/fix-getcwd-inconsistency
Fix __DIR__/getcwd() inconsistency.
|
2016-12-24 00:35:51 +01:00 |
AnrDaemon
|
810e70d234
|
Fix __DIR__/getcwd() inconsistency.
|
2016-12-23 21:57:00 +03:00 |
Jordi Boggiano
|
4896d16817
|
Merge pull request #5990 from AnrDaemon/fix-git-skips
Skip git-related tests if no git found.
|
2016-12-23 15:04:36 +01:00 |
Jordi Boggiano
|
df5fd3ba09
|
Cache executable finder calls
|
2016-12-23 15:01:05 +01:00 |
AnrDaemon
|
ab70601700
|
Skip git-related tests if no git found.
|
2016-12-22 20:14:57 +03:00 |
Jordi Boggiano
|
324c31f4a7
|
Merge pull request #5984 from composer/revert-5974-allow-parent-path-repository
Revert "Allow use of parent directories in PathDownloader when not mirroring the path"
|
2016-12-20 17:27:36 +01:00 |
Jordi Boggiano
|
fcbc1044e0
|
Revert "Allow use of parent directories in PathDownloader when not mirroring the path"
|
2016-12-20 17:27:24 +01:00 |
Jordi Boggiano
|
b2efcb1078
|
Update dist/source mirrors as well when updating a package's URL
|
2016-12-20 13:55:25 +01:00 |
Jordi Boggiano
|
51cfe3ba73
|
Fix whitespace in selfupdate output, fixes #5980
|
2016-12-19 15:37:30 +01:00 |
Jordi Boggiano
|
a78d800a24
|
Merge pull request #5974 from cweagans/allow-parent-path-repository
Allow use of parent directories in PathDownloader when not mirroring the path
|
2016-12-19 10:37:09 +01:00 |
Jordi Boggiano
|
1464146629
|
Explicitly cast possible-null to string
|
2016-12-19 10:31:57 +01:00 |
Jordi Boggiano
|
1bc8b702ca
|
Fix handling of annotated tags and prefer them over lightweight tags, fixes #5555
|
2016-12-18 14:50:55 +01:00 |
Jordi Boggiano
|
01885777f3
|
Fix case insensitivity of remove command, fixes #5973
|
2016-12-18 12:48:17 +01:00 |
Jordi Boggiano
|
d735524eb1
|
Merge pull request #5971 from johnstevenson/xdebug-version
Set xdebug version in environment, fixes #5967
|
2016-12-18 12:18:03 +01:00 |
Jordi Boggiano
|
da097aa6fc
|
Clarify PATH modification, refs #5970
|
2016-12-18 11:39:05 +01:00 |
Cameron Eagans
|
1cda8e1ef0
|
Allow use of parent directories in PathDownloader when not mirroring the path
|
2016-12-16 18:11:06 -07:00 |