Files
php-lib-chilean-rut/composer.json
Matias Navarro Carter b4f4fe25b9 [BC] New Version
This version simplifies the api a lot, eliminating unnecesary complexity and reducing the library to a few classes only.
2020-11-20 11:53:29 +00:00

42 lines
1.0 KiB
JSON

{
"name": "mnavarrocarter/chilean-rut",
"description": "PHP Rut Value Object with validation utilities, doctrine type, and other cool features.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matias Navarro Carter",
"email": "mnavarro@option.cl"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^9.0",
"doctrine/dbal": "^2.5",
"symfony/var-dumper": "^5.1",
"vimeo/psalm": "^4.2"
},
"autoload": {
"psr-4": {
"MNC\\ChileanRut\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MNC\\ChileanRut\\": "tests"
}
},
"scripts": {
"lint": "php-cs-fixer fix --allow-risky=yes",
"pr": [
"php-cs-fixer fix --dry-run -vvv",
"phpunit --testdox --coverage-text",
"psalm --stats"
]
}
}