assertEquals( [ 'cdb/cdb' => '1.0.0', 'cssjanus/cssjanus' => '1.1.1', 'leafo/lessphp' => '0.5.0', 'psr/log' => '1.0.0', ], $json->getRequiredDependencies() ); } public static function provideNormalizeVersion() { return [ [ 'v1.0.0', '1.0.0' ], [ '0.0.5', '0.0.5' ], ]; } /** * @dataProvider provideNormalizeVersion */ public function testNormalizeVersion( $input, $expected ) { $this->assertEquals( $expected, ComposerJson::normalizeVersion( $input ) ); } }