Skip to content

Commit 06a5c0c

Browse files
author
Simon Mönch
committed
allow doctrine/lexer 1.1
1 parent 963efc7 commit 06a5c0c

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"coduo/php-to-string": "^2",
2222
"symfony/property-access": "^2.3|^3.0|^4.0",
2323
"symfony/expression-language": "^2.3|^3.0|^4.0",
24-
"doctrine/lexer": "1.0.*",
24+
"doctrine/lexer": "^1.0",
2525
"openlss/lib-array2xml": "^1.0"
2626
},
2727
"require-dev": {

tests/LexerTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,8 @@ public function test_number_values($value, $expectedValue)
4545
public static function validNumberValuesProvider()
4646
{
4747
return [
48-
[1, 1],
49-
[1.25, 1.25],
50-
[0, 0],
5148
['125', 125],
5249
['12.15', 12.15],
53-
[-10, -10],
54-
[-1.124, -1.124],
5550
['-10', -10],
5651
['-1.24', -1.24]
5752
];

0 commit comments

Comments
 (0)