composer.json
{
"name": "jordanbrauer/unit-converter",
"description": "Convert standard units from one to another with this easy to use, lightweight package",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "jordanbrauer",
"email": "18744334+jordanbrauer@users.noreply.github.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-bcmath": "*",
"ext-intl": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "2.20.0",
"marcocesarato/php-conventional-changelog": "^1.17",
"pestphp/pest": "v1.23.1",
"symfony/var-dumper": "^3.3"
},
"autoload": {
"psr-4": {
"UnitConverter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UnitConverter\\Tests\\": "tests/",
"UnitConverter\\Tests\\Integration\\": "tests/integration/",
"UnitConverter\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
}
},
"version": "0.9.0"
}