Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bring @gmponos PR forward with master #668

Open
wants to merge 43 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
8ea9c53
Parse exponential float as Money
gmponos Dec 2, 2018
378dc3c
Fix style issues
gmponos Dec 2, 2018
5917181
Fix tests
gmponos Dec 2, 2018
619086b
Fix tests
gmponos Dec 2, 2018
9560b90
Update src/Parser/ExponentialMoneyParser.php
gmponos Dec 28, 2019
b3a67ad
Update ExponentialMoneyParser.php
gmponos May 21, 2020
4902c9c
Merge branch 'master' into expo_parser
gmponos May 21, 2020
3bdfcdf
Merge remote-tracking branch 'origin/master' into expo_parser
jameswilddev Sep 9, 2021
86cd1b5
Add missing types.
jameswilddev Sep 9, 2021
46331fa
Add missing type.
jameswilddev Sep 9, 2021
332dce7
Fix type mismatch and no-op type check.
jameswilddev Sep 9, 2021
9fd4dd9
Add missing strictness declaration.
jameswilddev Sep 9, 2021
bfa1c30
Add missing visibility indicators.
jameswilddev Sep 9, 2021
3d4ee60
Remove unneeded documentation comments.
jameswilddev Sep 9, 2021
e81002a
Fix Yoda comparison.
jameswilddev Sep 9, 2021
7f38b2b
Add missing spaces.
jameswilddev Sep 9, 2021
0ff4c06
Fix inconsistent parameter name.
jameswilddev Sep 9, 2021
e539991
Fix typo.
jameswilddev Sep 9, 2021
9053cc0
Remove test based on deprecated functionality.
jameswilddev Sep 9, 2021
c9fe752
Remove dead branch.
jameswilddev Sep 9, 2021
7e91b4f
Fix multiple static analysis problems.
jameswilddev Sep 9, 2021
bf94348
Add newline.
jameswilddev Sep 9, 2021
664b21a
Sort.
jameswilddev Sep 9, 2021
25be4e4
Remove author tag.
jameswilddev Sep 9, 2021
8657608
Convert to type hint.
jameswilddev Sep 9, 2021
e2b327a
Add missing imports.
jameswilddev Sep 9, 2021
8b67e85
Align.
jameswilddev Sep 9, 2021
6f7bdcc
Add type hints.
jameswilddev Sep 9, 2021
c7fa52f
Fix remaining static analysis.
jameswilddev Sep 9, 2021
6da0dd4
Add missing parameter doc.
jameswilddev Sep 9, 2021
6c4e1e5
Fix Psalm error.
jameswilddev Sep 9, 2021
4c6dfd8
Fix Psalm error.
jameswilddev Sep 9, 2021
0f58828
Fix Psalm error.
jameswilddev Sep 9, 2021
a14b82d
Continue CI fixes.
jameswilddev Sep 9, 2021
0d9bc46
Remove unused method call.
jameswilddev Sep 9, 2021
fadd352
Workaround for poor static analysis.
jameswilddev Sep 9, 2021
480f1ae
Add missing import.
jameswilddev Sep 9, 2021
477474e
Add missing import.
jameswilddev Sep 9, 2021
83dc8dc
Remove unused comment.
jameswilddev Sep 9, 2021
af5a2d4
Remove trailing whitespace.
jameswilddev Sep 9, 2021
0d938f3
Add missing dependency.
jameswilddev Sep 9, 2021
40b3ece
Correct.
jameswilddev Sep 9, 2021
12c42f3
Fix... something?
jameswilddev Sep 9, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"php": "^8.0",
"ext-bcmath": "*",
"ext-filter": "*",
"ext-json": "*"
"ext-json": "*",
"phpspec/prophecy-phpunit": "^2.0"
},
"require-dev": {
"ext-gmp": "*",
Expand Down