2012-03-29 13:34:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Downloader;
|
|
|
|
|
|
|
|
use Composer\Downloader\ZipDownloader;
|
2017-03-14 22:43:48 +00:00
|
|
|
use Composer\Package\PackageInterface;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2015-12-14 14:35:27 +00:00
|
|
|
use Composer\Util\Filesystem;
|
2018-10-31 11:44:54 +00:00
|
|
|
use Composer\Util\HttpDownloader;
|
2019-01-17 16:12:33 +00:00
|
|
|
use Composer\Util\Loop;
|
2012-03-29 13:34:57 +00:00
|
|
|
|
2016-01-21 12:01:55 +00:00
|
|
|
class ZipDownloaderTest extends TestCase
|
2012-03-29 13:34:57 +00:00
|
|
|
{
|
2015-12-14 14:35:27 +00:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2015-12-14 15:50:04 +00:00
|
|
|
private $testDir;
|
2019-01-07 15:22:41 +00:00
|
|
|
private $httpDownloader;
|
2018-11-12 14:23:32 +00:00
|
|
|
private $io;
|
|
|
|
private $config;
|
2019-01-17 16:12:33 +00:00
|
|
|
private $package;
|
2015-12-14 14:35:27 +00:00
|
|
|
|
2012-03-29 13:34:57 +00:00
|
|
|
public function setUp()
|
|
|
|
{
|
2016-01-21 12:01:55 +00:00
|
|
|
$this->testDir = $this->getUniqueTmpDirectory();
|
2018-04-12 08:24:56 +00:00
|
|
|
$this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
|
|
|
$this->config = $this->getMockBuilder('Composer\Config')->getMock();
|
2018-10-31 11:44:54 +00:00
|
|
|
$dlConfig = $this->getMockBuilder('Composer\Config')->getMock();
|
|
|
|
$this->httpDownloader = new HttpDownloader($this->io, $dlConfig);
|
2019-01-17 16:12:33 +00:00
|
|
|
$this->package = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2015-12-14 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
2015-12-14 15:50:04 +00:00
|
|
|
$fs = new Filesystem;
|
|
|
|
$fs->removeDirectory($this->testDir);
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('hasSystemUnzip', null);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', null);
|
2017-03-14 22:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setPrivateProperty($name, $value, $obj = null)
|
|
|
|
{
|
|
|
|
$reflectionClass = new \ReflectionClass('Composer\Downloader\ZipDownloader');
|
|
|
|
$reflectedProperty = $reflectionClass->getProperty($name);
|
|
|
|
$reflectedProperty->setAccessible(true);
|
|
|
|
if ($obj === null) {
|
2018-11-12 14:23:32 +00:00
|
|
|
$reflectedProperty->setValue($value);
|
2017-03-14 22:43:48 +00:00
|
|
|
} else {
|
2018-11-12 14:23:32 +00:00
|
|
|
$reflectedProperty->setValue($obj, $value);
|
2017-03-14 22:43:48 +00:00
|
|
|
}
|
2012-03-29 13:34:57 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 22:43:48 +00:00
|
|
|
/**
|
|
|
|
* @group only
|
|
|
|
*/
|
2012-03-29 13:34:57 +00:00
|
|
|
public function testErrorMessages()
|
|
|
|
{
|
2017-02-13 14:54:55 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2020-03-28 19:38:50 +00:00
|
|
|
$this->config->expects($this->any())
|
2017-03-14 22:43:48 +00:00
|
|
|
->method('get')
|
|
|
|
->with('vendor-dir')
|
|
|
|
->will($this->returnValue($this->testDir));
|
|
|
|
|
2019-01-17 16:12:33 +00:00
|
|
|
$this->package->expects($this->any())
|
2012-03-29 13:34:57 +00:00
|
|
|
->method('getDistUrl')
|
2013-07-01 23:45:43 +00:00
|
|
|
->will($this->returnValue($distUrl = 'file://'.__FILE__))
|
|
|
|
;
|
2019-01-17 16:12:33 +00:00
|
|
|
$this->package->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getDistUrls')
|
|
|
|
->will($this->returnValue(array($distUrl)))
|
2012-03-29 13:34:57 +00:00
|
|
|
;
|
2019-01-17 16:12:33 +00:00
|
|
|
$this->package->expects($this->atLeastOnce())
|
2014-05-07 16:25:28 +00:00
|
|
|
->method('getTransportOptions')
|
2013-08-19 07:38:25 +00:00
|
|
|
->will($this->returnValue(array()))
|
2012-03-29 13:34:57 +00:00
|
|
|
;
|
|
|
|
|
2018-10-31 11:44:54 +00:00
|
|
|
$downloader = new ZipDownloader($this->io, $this->config, $this->httpDownloader);
|
2017-03-14 22:43:48 +00:00
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('hasSystemUnzip', false);
|
2012-03-29 13:34:57 +00:00
|
|
|
|
|
|
|
try {
|
2019-01-17 16:12:33 +00:00
|
|
|
$promise = $downloader->download($this->package, $path = sys_get_temp_dir().'/composer-zip-test');
|
|
|
|
$loop = new Loop($this->httpDownloader);
|
|
|
|
$loop->wait(array($promise));
|
|
|
|
$downloader->install($this->package, $path);
|
|
|
|
|
2012-03-29 13:34:57 +00:00
|
|
|
$this->fail('Download of invalid zip files should throw an exception');
|
2017-03-14 22:43:48 +00:00
|
|
|
} catch (\Exception $e) {
|
2012-03-29 13:34:57 +00:00
|
|
|
$this->assertContains('is not a zip archive', $e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
2017-02-13 14:54:55 +00:00
|
|
|
|
|
|
|
/**
|
2017-03-14 22:43:48 +00:00
|
|
|
* @expectedException \RuntimeException
|
|
|
|
* @expectedExceptionMessage There was an error extracting the ZIP file
|
2017-02-13 14:54:55 +00:00
|
|
|
*/
|
2017-03-14 22:43:48 +00:00
|
|
|
public function testZipArchiveOnlyFailed()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('hasSystemUnzip', false);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', true);
|
2018-10-31 11:44:54 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader);
|
2018-04-12 08:24:56 +00:00
|
|
|
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$zipArchive->expects($this->at(0))
|
|
|
|
->method('open')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$zipArchive->expects($this->at(1))
|
|
|
|
->method('extractTo')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
2017-04-08 18:47:46 +00:00
|
|
|
/**
|
2017-05-16 20:44:25 +00:00
|
|
|
* @expectedException \RuntimeException
|
|
|
|
* @expectedExceptionMessage The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems): Not a directory
|
2017-04-08 18:47:46 +00:00
|
|
|
*/
|
|
|
|
public function testZipArchiveExtractOnlyFailed()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-04-08 18:47:46 +00:00
|
|
|
$this->setPrivateProperty('hasSystemUnzip', false);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', true);
|
2018-10-31 11:44:54 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader);
|
2018-04-12 08:24:56 +00:00
|
|
|
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
|
2017-04-08 18:47:46 +00:00
|
|
|
$zipArchive->expects($this->at(0))
|
|
|
|
->method('open')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$zipArchive->expects($this->at(1))
|
|
|
|
->method('extractTo')
|
|
|
|
->will($this->throwException(new \ErrorException('Not a directory')));
|
|
|
|
|
|
|
|
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-04-08 18:47:46 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 22:43:48 +00:00
|
|
|
/**
|
|
|
|
* @group only
|
|
|
|
*/
|
|
|
|
public function testZipArchiveOnlyGood()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('hasSystemUnzip', false);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', true);
|
2018-10-31 11:44:54 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader);
|
2018-04-12 08:24:56 +00:00
|
|
|
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$zipArchive->expects($this->at(0))
|
|
|
|
->method('open')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$zipArchive->expects($this->at(1))
|
|
|
|
->method('extractTo')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
2019-12-03 11:30:08 +00:00
|
|
|
* @expectedExceptionMessage Failed to execute (1) unzip
|
2017-02-13 14:54:55 +00:00
|
|
|
*/
|
2017-03-14 22:43:48 +00:00
|
|
|
public function testSystemUnzipOnlyFailed()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('hasSystemUnzip', true);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', false);
|
2018-04-12 08:24:56 +00:00
|
|
|
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$processExecutor->expects($this->at(0))
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2020-06-04 13:30:20 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 22:43:48 +00:00
|
|
|
public function testSystemUnzipOnlyGood()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('hasSystemUnzip', true);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', false);
|
2018-04-12 08:24:56 +00:00
|
|
|
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$processExecutor->expects($this->at(0))
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
2020-06-04 13:30:20 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 22:43:48 +00:00
|
|
|
public function testNonWindowsFallbackGood()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('isWindows', false);
|
|
|
|
$this->setPrivateProperty('hasSystemUnzip', true);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', true);
|
2017-03-14 22:43:48 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$processExecutor->expects($this->at(0))
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$zipArchive->expects($this->at(0))
|
|
|
|
->method('open')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$zipArchive->expects($this->at(1))
|
|
|
|
->method('extractTo')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2020-06-04 13:30:20 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
|
2017-03-14 22:43:48 +00:00
|
|
|
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
2017-03-14 22:43:48 +00:00
|
|
|
* @expectedExceptionMessage There was an error extracting the ZIP file
|
2017-02-13 14:54:55 +00:00
|
|
|
*/
|
2017-03-14 22:43:48 +00:00
|
|
|
public function testNonWindowsFallbackFailed()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('isWindows', false);
|
|
|
|
$this->setPrivateProperty('hasSystemUnzip', true);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', true);
|
2017-03-14 22:43:48 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$processExecutor->expects($this->at(0))
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$zipArchive->expects($this->at(0))
|
|
|
|
->method('open')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$zipArchive->expects($this->at(1))
|
|
|
|
->method('extractTo')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2020-06-04 13:30:20 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
|
2017-03-14 22:43:48 +00:00
|
|
|
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 22:43:48 +00:00
|
|
|
public function testWindowsFallbackGood()
|
2017-02-13 14:54:55 +00:00
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('isWindows', true);
|
|
|
|
$this->setPrivateProperty('hasSystemUnzip', true);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', true);
|
2017-02-13 14:54:55 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$processExecutor->expects($this->atLeastOnce())
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$zipArchive->expects($this->at(0))
|
|
|
|
->method('open')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$zipArchive->expects($this->at(1))
|
|
|
|
->method('extractTo')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2020-06-04 13:30:20 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
|
2017-03-14 22:43:48 +00:00
|
|
|
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 22:43:48 +00:00
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
2019-12-03 11:30:08 +00:00
|
|
|
* @expectedExceptionMessage Failed to execute (1) unzip
|
2017-03-14 22:43:48 +00:00
|
|
|
*/
|
|
|
|
public function testWindowsFallbackFailed()
|
|
|
|
{
|
2017-12-19 10:07:09 +00:00
|
|
|
if (!class_exists('ZipArchive')) {
|
|
|
|
$this->markTestSkipped('zip extension missing');
|
|
|
|
}
|
|
|
|
|
2017-03-30 07:24:48 +00:00
|
|
|
$this->setPrivateProperty('isWindows', true);
|
|
|
|
$this->setPrivateProperty('hasSystemUnzip', true);
|
|
|
|
$this->setPrivateProperty('hasZipArchive', true);
|
2017-03-14 22:43:48 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$processExecutor->expects($this->atLeastOnce())
|
|
|
|
->method('execute')
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
|
2017-03-14 22:43:48 +00:00
|
|
|
$zipArchive->expects($this->at(0))
|
|
|
|
->method('open')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$zipArchive->expects($this->at(1))
|
|
|
|
->method('extractTo')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2020-06-04 13:30:20 +00:00
|
|
|
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
|
2017-03-14 22:43:48 +00:00
|
|
|
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->extract($this->package, 'testfile.zip', 'vendor/dir');
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
2017-03-14 22:43:48 +00:00
|
|
|
}
|
2017-02-13 14:54:55 +00:00
|
|
|
|
2017-03-14 22:43:48 +00:00
|
|
|
class MockedZipDownloader extends ZipDownloader
|
|
|
|
{
|
2019-08-29 09:37:23 +00:00
|
|
|
public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null, $output = true)
|
2017-03-14 22:43:48 +00:00
|
|
|
{
|
|
|
|
return;
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 16:12:33 +00:00
|
|
|
public function install(PackageInterface $package, $path, $output = true)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function extract(PackageInterface $package, $file, $path)
|
2017-03-14 22:43:48 +00:00
|
|
|
{
|
2019-01-17 16:12:33 +00:00
|
|
|
parent::extract($package, $file, $path);
|
2017-02-13 14:54:55 +00:00
|
|
|
}
|
2012-03-29 13:34:57 +00:00
|
|
|
}
|