|
21 | 21 | use Composer\Semver\Constraint\MultiConstraint;
|
22 | 22 | use Fxp\Composer\AssetPlugin\Package\Version\VersionParser;
|
23 | 23 | use Fxp\Composer\AssetPlugin\Type\AssetTypeInterface;
|
| 24 | +use Fxp\Composer\AssetPlugin\Util\Config; |
24 | 25 |
|
25 | 26 | /**
|
26 | 27 | * Filters the asset packages imported into VCS repository to optimize
|
@@ -172,17 +173,11 @@ protected function satisfy(Link $require, $normalizedVersion)
|
172 | 173 | */
|
173 | 174 | protected function skipByPattern()
|
174 | 175 | {
|
175 |
| - $extra = $this->package->getExtra(); |
| 176 | + $skip = Config::get($this->package, 'pattern-skip-version', false); |
176 | 177 |
|
177 |
| - if (!array_key_exists('asset-pattern-skip-version', $extra)) { |
178 |
| - $extra['asset-pattern-skip-version'] = false; |
179 |
| - } |
180 |
| - |
181 |
| - if (is_string($extra['asset-pattern-skip-version'])) { |
182 |
| - return trim($extra['asset-pattern-skip-version'], '/'); |
183 |
| - } |
184 |
| - |
185 |
| - return false; |
| 178 | + return is_string($skip) |
| 179 | + ? trim($skip, '/') |
| 180 | + : false; |
186 | 181 | }
|
187 | 182 |
|
188 | 183 | /**
|
@@ -262,7 +257,7 @@ protected function initialize()
|
262 | 257 | );
|
263 | 258 |
|
264 | 259 | if (null !== $this->installedRepository
|
265 |
| - && FilterUtil::checkExtraOption($this->package, 'asset-optimize-with-installed-packages')) { |
| 260 | + && FilterUtil::checkConfigOption($this->package, 'optimize-with-installed-packages')) { |
266 | 261 | $this->initInstalledPackages();
|
267 | 262 | }
|
268 | 263 | }
|
@@ -297,7 +292,7 @@ private function includeRootConstraint(PackageInterface $package, Link $link)
|
297 | 292 | if (isset($this->requires[$package->getName()])) {
|
298 | 293 | /* @var Link $rLink */
|
299 | 294 | $rLink = $this->requires[$package->getName()];
|
300 |
| - $useConjunctive = FilterUtil::checkExtraOption($this->package, 'asset-optimize-with-conjunctive'); |
| 295 | + $useConjunctive = FilterUtil::checkConfigOption($this->package, 'optimize-with-conjunctive'); |
301 | 296 | $constraint = new MultiConstraint(array($rLink->getConstraint(), $link->getConstraint()), $useConjunctive);
|
302 | 297 | $link = new Link($rLink->getSource(), $rLink->getTarget(), $constraint, 'installed', $constraint->getPrettyString());
|
303 | 298 | }
|
|
0 commit comments