mirror of
https://github.com/archtechx/money.git
synced 2025-12-12 11:24:03 +00:00
52 lines
1.2 KiB
JSON
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": "^8.0|^9.0|^10.0",
|
|
"archtechx/helpers": "^0.3.1"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^6.9|^7.0|^8.0",
|
|
"pestphp/pest": "^1.10|^2.0",
|
|
"phpstan/phpstan": "^0.12.92|^1.9.8",
|
|
"pestphp/pest-plugin-laravel": "^1.1|^2.0",
|
|
"nunomaduro/larastan": "^1.0|^2.4"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"ArchTech\\Money\\MoneyServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
}
|
|
}
|