This version simplifies the api a lot, eliminating unnecesary complexity and reducing the library to a few classes only.
42 lines
1.0 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|