8087 Commits (0181f074911524965b244e5a7877f7f7dc7211a5)
 

Author SHA1 Message Date
Jordi Boggiano f0a1eaaabf Clarify that inline aliases are root only, fixes #7217 6 years ago
Thomas Flori 58e4326067
add readme node to composer.json schema 6 years ago
Thomas Flori 6825592d65
move readme description one level up 6 years ago
Edwin Rodríguez 9dc6222288 Allow using fossil dependency in a fossil repository, fixes #7125, closes #7126 6 years ago
Jordi Boggiano a8cf4a07fc Merge branch '1.6' 6 years ago
Jordi Boggiano fa539766b8 Output outdated warning on stderr, fixes #7218 6 years ago
Jordi Boggiano 24ef605473 Clarify that #refs is root-only, fixes #7241 6 years ago
Jordi Boggiano 288631a37e Log the source of the failure when an aliased script fails, fixes #7201 6 years ago
Jordi Boggiano 35ebb8b93f Merge branch '1.6' 6 years ago
Markus Staab af3783b5f4 properly cache when a branch in a certain revision does not contain a composer.json
this prevents requesting/trying to get the composer.json over and over again even if no commits happend

Closes #7156
6 years ago
Jordi Boggiano 89e138a593 Add hint about .local/bin to docs, fixes #7132 6 years ago
Jordi Boggiano a51911f295 Merge commit 'b1a78b60fe552bc6e7df09cb1c0154797fea6f64' 6 years ago
Jordi Boggiano b1a78b60fe Remove output while the changes are being collected 6 years ago
Filippo Tessarotto 277f32d388 Lock _readme: remove outdated hashtag link part, closes #7096 6 years ago
Markus Staab 9bee2ca28e make sure we only cache resources which contain a svn revision
like we do in the VCS driver.

Closes #7158
6 years ago
Jordi Boggiano 1336029b72 Fix type hints to match latest symfony, fixes #7199 6 years ago
Jordi Boggiano 2bd34c0534 Merge branch '1.6' 6 years ago
Fabio Bas c9aa9c0d2f Fix usage of svn user-provided credentials, fixes #7114, closes #7228 6 years ago
Jordi Boggiano 5460e5d86f Respect current PHP version when figuring out requirements for init command, fixes #7257 6 years ago
Jordi Boggiano ba667a88b6
Merge pull request #7172 from localheinz/fix/type
Fix: Add type field to schema for inline-package
6 years ago
Jordi Boggiano 74fdcbc637
Merge pull request #7175 from localheinz/fix/sort
Fix: Keep rules sorted
6 years ago
Jordi Boggiano 174c71de04 Handle http 401/403 differently to allow reading warning message 6 years ago
Jordi Boggiano 7afd1a9385 Update dependencies 6 years ago
Jordi Boggiano 9041622b86 Fix version guessing regression and a few other issues, fixes #7127 6 years ago
Jordi Boggiano 79d62cc51c Escape references properly when getting commit logs for verbose update 6 years ago
Markus Staab 71d058b97b refactored "svn --version" calls into a single place, closes #7152
this saves a lot of process-spawning as we re-use the result of a process started once.
6 years ago
Carlos 2f56c3c334 Change status command help to make it clearer, closes #7213 6 years ago
Jordi Boggiano 78017bcbcb Fix support for uppercase package names in why/why-not commands, fixes #7198 6 years ago
Jordi Boggiano 00031afa87
Merge pull request #7253 from tflori/patch-1
add readme to support fields in the schema docs
6 years ago
Jordi Boggiano e76d32817e
Merge pull request #7070 from nicolas-grekas/fix
Fix RemoteFilesystem::getRemoteContents() on-failure behavior
6 years ago
dmsmidt 556148510b ConsoleIO::select for a single option, fixes #7106, closes #7107 6 years ago
Jordi Boggiano ec9ba46c5f Fix run-script --list failing to handle native script handlers, fixes #7069 6 years ago
Jordi Boggiano 4bddcd7124 Add support for gitlab.com URL replacement, fixes #7160 6 years ago
Jordi Boggiano bfa01285c2 Merge branch '1.6' 6 years ago
Jordi Boggiano 066351c5b9 Remove use of deprecated getMock method 6 years ago
Jordi Boggiano 036fc44c25 Make sure aliased packages are removed correctly from the repository, fixes #7167 6 years ago
Petr /Peggy/ Sládek 8d06832077 Update ClassMapGenerator to work better with symlinks, fixes #7252, closes #7251 6 years ago
Jordi Boggiano a652039cc2
Merge pull request #7157 from xabbuh/patch-1
document the COMPOSER_MEMORY_LIMIT env var
6 years ago
Thomas Flori 05c9542db8
add readme to support fields in the schema docs 6 years ago
johnstevenson 30e9ede1e3 Update to 1.1.0 release 6 years ago
Nils Adermann c2ed944896
Merge pull request #7233 from moviuro/patch-1
how-to-install-composer-programmatically.md: quotes are seatbelts
6 years ago
Moviuro 75be28d4a3
how-to-install-composer-programmatically.md: quotes are seatbelts 6 years ago
闫兴茂 491ae0634a Fix bug for scripts for config command 6 years ago
Jordi Boggiano c2fbbe3b86 Restore $INI var 6 years ago
Jordi Boggiano 3536c2970a Try adding a high deps build, fixes #7124 6 years ago
Jordi Boggiano 9a5c2da4de
Merge pull request #7122 from davidyell/patch-1
Added space to concatenation
6 years ago
Jordi Boggiano 6bb1eaa6a8
Merge pull request #7212 from theofidry/bugfix/fix-null-io
Allow Composer to be used without running the application
6 years ago
Jordi Boggiano d694687b86
Merge pull request #7128 from rogeriopradoj/patch-1
Add option "no-secure-http" for create-project
6 years ago
Jordi Boggiano 54a73faa31
Merge pull request #7206 from svenluijten/dont-use-just
Avoid using 'just' in documentation
6 years ago
Théo FIDRY b7ab081519
Allow Composer to be used without running the application
For [Humbug
Box](https://github.com/humbug/box/blob/master/src/Composer/ComposerOrchestrator.php#L30) we are
using Composer to dump the autoload. To do so I'm using the `Composer` class from the application:

```php
$composer = (new ComposerApplication())->getComposer();
```

If you do so however this is going to fail because `Application#io` is null instead of being a
`IOInterface` instance. Indeed it is initialised only when the application is run. So one solution
is to initialised it with a dummy IO and the right IO object will be set when the application is run
as usual.
6 years ago