Skip to content

Commit

Permalink
Framework: remove checking on dev packages requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksii Lisovyi authored and ysapiga committed Jun 18, 2019
1 parent 212a533 commit 2c91e5a
Show file tree
Hide file tree
Showing 5 changed files with 40,750 additions and 10,380 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function testGetRequiredPhpVersion($composerDir)
['composerFactory' => $this->composerFactory]
);

$this->assertEquals("~5.5.0|~5.6.0|~7.0.0", $composerInfo->getRequiredPhpVersion());
$this->assertEquals("~7.1.3||~7.2.0", $composerInfo->getRequiredPhpVersion());
}

/**
Expand All @@ -92,7 +92,7 @@ public function testGetRequiredPhpVersion($composerDir)
public function testGetRequiredExtensions($composerDir)
{
$this->setupDirectory($composerDir);
$expectedExtensions = ['ctype', 'gd', 'spl', 'dom', 'simplexml', 'mcrypt', 'hash', 'curl', 'iconv', 'intl'];
$expectedExtensions = ['ctype', 'gd', 'spl', 'dom', 'simplexml', 'hash', 'curl', 'iconv', 'intl'];

/** @var \Magento\Framework\Composer\ComposerInformation $composerInfo */
$composerInfo = $this->objectManager->create(
Expand Down
Loading

0 comments on commit 2c91e5a

Please sign in to comment.