Files
provider_local_people/composer.json
T
2026-07-23 22:20:36 -04:00

39 lines
883 B
JSON

{
"name": "ktrix/provider-local-people",
"type": "project",
"authors": [
{
"name": "Sebastian Krupinski",
"email": "krupinski01@gmail.com"
}
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.3"
},
"autoloader-suffix": "ProviderLocalPeople",
"vendor-dir": "lib/vendor"
},
"require": {
"php": ">=8.3 <=8.5"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"KTXM\\ProviderLocalPeople\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"KTXT\\ProviderLocalPeople\\Tests\\": "tests/php/"
}
},
"scripts": {
"test:unit": "phpunit --configuration tests/php/phpunit.xml --testsuite \"Unit Tests\" --colors=always --testdox",
"test:integration": "phpunit --configuration tests/php/phpunit.xml --testsuite \"Integration Tests\" --colors=always --testdox"
}
}