forked from magento-hackathon/magento-composer-installer
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from magento-trigger/MC-39996
MC-39996: Add composer2 support
- Loading branch information
Showing
4 changed files
with
89 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:Flyingmana/phpcs.git" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
fascinosum
Author
Collaborator
|
||
"url": "[email protected]:firegento/phpcs.git" | ||
} | ||
], | ||
"authors":[ | ||
|
@@ -39,16 +39,16 @@ | |
} | ||
], | ||
"require":{ | ||
"composer-plugin-api": "^1.0" | ||
"composer-plugin-api": "^1.1 || ^2.0", | ||
"composer/composer": "^1.9 || ^2.0" | ||
}, | ||
"require-dev":{ | ||
"phpunit/phpunit":"*", | ||
"phpunit/phpunit-mock-objects": "dev-master", | ||
"squizlabs/php_codesniffer": "1.4.7", | ||
"firegento/phpcs": "dev-patch-1", | ||
"composer/composer":"*@dev", | ||
"symfony/process":"*", | ||
"mikey179/vfsStream":"*" | ||
"firegento/phpcs": "~1.1.0", | ||
"symfony/process": "*", | ||
"mikey179/vfsstream": "*" | ||
}, | ||
"replace": { | ||
"magento-hackathon/magento-composer-installer": "*" | ||
|
@@ -64,7 +64,6 @@ | |
"/tests/FullStackTest/" | ||
] | ||
}, | ||
"test_version":"999.0.0", | ||
"extra":{ | ||
"composer-command-registry": [ "MagentoHackathon\\Composer\\Magento\\Command\\DeployCommand" ], | ||
"class":"MagentoHackathon\\Composer\\Magento\\Plugin" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* @author Tiago Ribeiro <[email protected]> | ||
* @author Rui Marinho <[email protected]> | ||
*/ | ||
class DeployCommand extends \Composer\Command\Command | ||
class DeployCommand extends \Composer\Command\BaseCommand | ||
{ | ||
protected function configure() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@fascinosum it's really strange that this commit was tagged with "0.2.1-beta1" tag, but it's not as part of master branch. Could you push it?
/CC @sidolov @sivaschenko