4785 Commits (77e104bd4dcf29057e090ee928097816507b7b9c)

Author SHA1 Message Date
Alexander Schwenn 77e104bd4d Fix typo in local variable name 7 years ago
Jordi Boggiano 9e592f5748 Merge branch '1.3' 7 years ago
janczer 4707433b40 Fix change array 7 years ago
janczer 11524fc2c2 If xml have not index channel use uri 7 years ago
rubenrua 8fccbaa4a4 Improve memory usage resolving dependencies II
Optimize `rulesByHash` in `Composer\DependencyResolver\RuleSet` to only
use an array with the second element, event with very low probability.
7 years ago
rubenrua 4e1887a721 Improve memory usage resolving dependencies
It is known that composer update takes a lot of memory: #5915, #5902,

I am playing with a profiler (@blackfireio) to make a demo in my local
PHP meetup (@phpvigo) and I found out a way to use less memory. These
are my first tests:

* Private project using PHP 5.6:
  * Memory: from 1.31GB to 1.07GB
  * Wall Time: from 2min 8s to 1min 33s

* symfony-demo using PHP 7.1 in my old mac book:
  * Memory: from 667MB to 523MB
  * Wall Time: from  5min 29s to 5min 28s

Not use an array inside conflict rules is this improvement main idea:

```php
<?php
//Memory 38MB
gc_collect_cycles();
gc_disable();

class Rule
{
    public $literals;

    public function __construct(array $literals)
    {
        $this->literals = $literals;
    }
}

$rules = array();

$i = 0;
while ($i<80000){ //
    $i++;

    $array = array(-$i, $i);
    $rule = new Rule($array);
    $rules[] = $rule;
}
```

```php
<?php
//Memory 11.1MB
gc_collect_cycles();
gc_disable();

class Rule2Literals
{
    public $literal1;
    public $literal2;

    public function __construct($literal1, $literal2)
    {
        $this->literal1 = $literal1;
        $this->literal2 = $literal2;
    }
}

$rules = array();

$i = 0;
while ($i<80000){ //
    $i++;

    $rule = new ConflictRule(-$i, $i);
    $rules[] = $rule;
}
```

More info https://github.com/composer/composer/pull/6168
7 years ago
Jordi Boggiano 07123715d6 Merge branch '1.3' 8 years ago
Pieter Frenssen 9020b7113c Fix invalid calculation on non-numeric string 8 years ago
Jordi Boggiano 20c16f18f5 Merge branch '1.3' 8 years ago
Jordi Boggiano 2931da6a50 Merge remote-tracking branch 'johnstevenson/xdebug-win-opcache' into 1.3 8 years ago
Jordi Boggiano f3d0e4660d Fix urlencoding of gitlab dots, fixes #6064 8 years ago
Jordi Boggiano eb5495b8e4 Merge branch '1.3' 8 years ago
Jordi Boggiano d6ffe1fd1d Add support for outdated command info without ANSI colors, fixes #6070 8 years ago
Jordi Boggiano cf2838131f Merge pull request #6062 from MoT3rror/master
Add ignore filters option to archive command
8 years ago
vlakoff 65a5727315 Do not hide the warning implicitly
Even if COMPOSER_ALLOW_XDEBUG is set,
requires to also set COMPOSER_DISABLE_XDEBUG_WARN to hide the warning.

This undoes commit c5dcedd.
8 years ago
Jordi Boggiano 7aa7c3ced3 Forward composer memory_limit to child processes, fixes #6075 8 years ago
Jordi Boggiano 9a26a9e8f8 Make sure alias packages installed with create-project end up with the correct branch checked out, fixes #6082 8 years ago
Jordi Boggiano e4840ee413 Add a COMPOSER_BINARY env var so that chdir does not affect @composer script resolvability, fixes #6080 8 years ago
Yanick Witschi 0ea93df252 Fixed no lock file was written when setting writeLock to true and executeOperations to false 8 years ago
Ed Reel f29a302391 Return 1 if composer.json exists, but the package doesn't. 8 years ago
jbixler dac51c7f4b Add ignore filters option to archive command 8 years ago
Sven Luijten b4a77e1c0e Add full stop to all command descriptions 8 years ago
johnstevenson 9aa213b329 Work-around for Windows opcache bug, fixes #6052 8 years ago
Lauris Binde f9f92dc9d8 Fix Xdebug warning
Composer incorrectly shows Xdebug warning, even if extension is not loaded, but COMPOSER_ALLOW_XDEBUG is present.
8 years ago
Lauris Binde bca51f177e Fix Xdebug warning
Composer incorrectly shows Xdebug warning, even if extension is not loaded, but COMPOSER_ALLOW_XDEBUG is present.
8 years ago
Jordi Boggiano 285ff274ac Merge branch '1.3' 8 years ago
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)
8 years ago
Jordi Boggiano 677e75d168 Add phpdoc comment 8 years ago
Felix Becker 5f64cae860 Make PluginManager::addPlugin() public 8 years ago
johnstevenson d48d11d187 Fix scanned ini files logic 8 years ago
Jordi Boggiano 31731a06c2 Merge pull request #6023 from stof/add_property
Add missing definition of a property
8 years ago
Christophe Coevoet 4ae2aecc54 Add missing definition of a property 8 years ago
Jordi Boggiano 321361a37b Merge branch '1.3' 8 years ago
Jordi Boggiano be9abbf9f3 Override all php-* versions when php package is defined in config.platform 8 years ago
Jordi Boggiano 87b68e8c2f Merge pull request #6013 from stof/repository_schema
Implement schema validation for repositories
8 years ago
Jordi Boggiano 0bc75c3fb6 Bump memory limit to 1.5G 8 years ago
Plamen Garkov ab4322148f adding "fatal: unable to access" to authFalures 8 years ago
johnstevenson 4e53d64d4b Ignore xdebug.ini and process all files, #5995 8 years ago
Jordi Boggiano ad97b01f9c Merge pull request #6012 from stof/fix_repository
Fix the class name for fossil repositories
8 years ago
Alex Bowers e161218819 Refactored xdebughandler 8 years ago
Jordi Boggiano 2c39c43a9e Forward memory limit even if it was overwritten when restarting without xdebug, fixes #6004 8 years ago
Christophe Coevoet 6daa2afdd3 Fix the handling of references in JSON schemas when validating
References must be resolved when loading the schema, otherwise they will fail
when using them.
The easiest way is actually to let the JsonSchema library load the file itself.
8 years ago
Christophe Coevoet 978b87f7bd Fix the class name for fossil repositories 8 years ago
Jordi Boggiano 37bbf1a7c9 Merge pull request #5993 from stefangr/fix_bitbucket_dist_install_from_private_repo
Fix dist downloads from bitbucket private repos
8 years ago
Jordi Boggiano ed0829fed1 Simplify code and fix path to composer.json, refs #6001 8 years ago
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
8 years ago
Jordi Boggiano 5ecd9ace59 Forward --minor-only flag to show command 8 years ago
Jordi Boggiano 6816acbe27 Merge remote-tracking branch 'johnstevenson/xdebug-#5995' into 1.3 8 years ago
Jordi Boggiano 8764876cad Avoid loading xdebug platform package twice, fixes #5995 8 years ago
Jordi Boggiano c5dcedd0db Hide warning when xdebug is explicitly allowed 8 years ago