1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Version parser stability regexp update

This commit is contained in:
Alexey Prilipko 2012-07-09 08:47:40 +11:00
parent 490b2c0295
commit 75d3d57117
2 changed files with 14 additions and 3 deletions

View file

@ -238,6 +238,9 @@ class VersionParserTest extends \PHPUnit_Framework_TestCase
array('stable', '3.1.2-patch'),
array('alpha', '3.1.2-alpha5'),
array('beta', '3.1.2-beta'),
array('beta', '2.0b1'),
array('alpha', '1.2.0a1'),
array('alpha', '1.2_a1'),
);
}
}