72 Commits (3cdca37e8588d262efbb3b589f8a68eea73738a2)

Author SHA1 Message Date
Jordi Boggiano ce08582671 Fix CS 9 years ago
Jordi Boggiano 6a64041055 CS fixes 9 years ago
nevvermind 12c833864c Revert converting `1.0.0` to `^1.0`. 9 years ago
nevvermind 3032f0a538 Refactor based on code review
- Move the version api getter to the PluginManager And make it such that it can be mocked, but not pollute the public interface. That means "protected" visibility.
- The plugin api version constant should still be used throughout the code.
- Use different fixtures class names
- Use regex possessive quantifiers for performance
- Use full words for readability
9 years ago
nevvermind eb2aa14830 Make plugins have actual constraints instead of fixed versions
Instead of developing plugins against a single, fixed Plugin API version - `"composer-plugin-api": "1.0.0"`, this change will allow plugin developers to use versions like `"composer-plugin-api": "~1.1"` or `"composer-plugin-api": ">=2.1 <3.0"`, aka actual Composer-compatible constraints.

Only the "1.0", "1.0.0" and "1.0.0" Plugin API versions will be regarded as BC versions, and internally converted to "^1.0"; every other declared version string will be kept as it is.

Because of this new constraint flexibility, plugin version mismatches will be skipped, which means those plugin will NOT be registered to the system. Previously, a mismatch triggered a warning, but plugins were still registered.
9 years ago
Jérémy Derussé 86e0b847be Allow plugins to register commands 9 years ago
Jordi Boggiano 0627d846a5 PluginManager refactoring, fixes #3550 10 years ago
Jordi Boggiano 94926218e8 CS fixes 10 years ago
François Pluchino 11b945046f Register plugin only one time when it's present in global and project mode 10 years ago
Jordi Boggiano 11a0d16ccc CS fixes 11 years ago
Karoly Negyesi 1a69d0a2a7 style fixes 11 years ago
Karoly Negyesi 6c393c1c69 use the more generic removeDirectory 11 years ago
Karoly Negyesi f82c820a32 do not try to test update inside fixtures 11 years ago
Martin Hasoň e949038c0f Removed duplication of logic of an installation manager in a plugin manager 11 years ago
Nils Adermann f249fd804f Correctly require composer plugin api version in test plugins 11 years ago
Nils Adermann 6c2e998e40 Add missing use statement 11 years ago
Nils Adermann bf08019292 Load plugins and installers prior to checking installed packages 11 years ago
Nils Adermann b9c5758670 Make composer/io part of the activate plugin API rather than constructor args 11 years ago
Nils Adermann 69a028f368 Fix plugin interface usage in tests 11 years ago
Nils Adermann 3960edd64e Turn EventDispatcher into generic solution handling plugins as well 11 years ago
Nils Adermann 2f43e9aefb Load installed plugins at appropriate time and adapt tests accordingly 11 years ago
Nils Adermann 3e41977be7 Plugin tests are no longer strictly installer tests 11 years ago