1
0
Fork 0
mirror of https://github.com/archtechx/money.git synced 2025-12-12 19:34:02 +00:00
money/composer.json
lukinovec b50e49358a
Add L10 support (#20)
* Add L10 support

* Upgrade phpstan

* Set `archtechx/helpers` version

* Fix PHPStan errors

* Try using older PHPStan version

* Revert PHPStan downgrade

* Delete immutability tests

* Bring back immutability tests

* Correct typehint

* Update immutability tests

* Remove L8 support

* Allow PHP 8.0, run tests for 8.0 as well

* Swap Laravel 9 & 10

* Add setup-php step

* Revert formatting changes

* Fix formatting

* Revert adding setup-php

* Try adding setup-php

* Change formatting

* Remove PHP 8.0

* Fix formatting
2023-02-16 17:06:45 +01:00

52 lines
1.2 KiB
JSON

{
"name": "archtechx/money",
"description": "A lightweight package for handling money math in PHP.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel Štancl",
"email": "samuel@archte.ch"
}
],
"autoload": {
"psr-4": {
"ArchTech\\Money\\": "src/"
},
"files": [
"src/helpers.php",
"src/Wireable.php"
]
},
"autoload-dev": {
"psr-4": {
"ArchTech\\Money\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0",
"archtechx/helpers": "^0.3.1"
},
"require-dev": {
"orchestra/testbench": "^7.19|^8.0",
"pestphp/pest": "^1.10|^2.0",
"phpstan/phpstan": "^1.9.8",
"pestphp/pest-plugin-laravel": "^1.1|^2.0",
"nunomaduro/larastan": "^2.4"
},
"extra": {
"laravel": {
"providers": [
"ArchTech\\Money\\MoneyServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}