1 | <?php |
||
28 | class Installer extends LibraryInstaller |
||
29 | { |
||
30 | // phossa2 application |
||
31 | const TYPE_APP = 'phossa2-app'; |
||
32 | |||
33 | // phossa2 extension |
||
34 | const TYPE_EXT = 'phossa2-extension'; |
||
35 | |||
36 | // app dir defined in extra |
||
37 | const EXTRA_APPPATH = 'app-path'; |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | public function supports($packageType) |
||
51 | |||
52 | /** |
||
53 | * {@inheritDoc} |
||
54 | */ |
||
55 | public function getPackageBasePath(PackageInterface $package) |
||
69 | } |
||
70 |