Skip to content

Commit dfa7c8c

Browse files
Merge pull request #3 from TopFloorTech/master
Merge latest changes from TopFloor fork
2 parents 0158853 + 5741644 commit dfa7c8c

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "GPL-2.0+",
66
"require": {
77
"php": ">=5.5",
8-
"composer-plugin-api": "^1.0.0",
8+
"composer-plugin-api": "^1 | ^2",
99
"symfony/finder": "*"
1010
},
1111
"autoload": {

src/Plugin.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,24 @@ public function activate(Composer $composer, IOInterface $io) {
7979
$this->handler = new Handler($composer, $io);
8080
}
8181

82+
/**
83+
* Deactivation hook.
84+
*
85+
* @param Composer $composer
86+
* @param IOInterface $io
87+
*/
88+
public function deactivate(Composer $composer, IOInterface $io) {
89+
}
90+
91+
/**
92+
* Uninstall hook.
93+
*
94+
* @param Composer $composer
95+
* @param IOInterface $io
96+
*/
97+
public function uninstall(Composer $composer, IOInterface $io) {
98+
}
99+
82100
/**
83101
* @param \Composer\Installer\PackageEvent $event
84102
*/

0 commit comments

Comments
 (0)