40 lines
903 B
JSON
40 lines
903 B
JSON
{
|
|
"name": "ktxm/people-manager",
|
|
"type": "project",
|
|
"authors": [
|
|
{
|
|
"name": "Sebastian Krupinski",
|
|
"email": "krupinski01@gmail.com"
|
|
}
|
|
],
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"platform": {
|
|
"php": "8.3"
|
|
},
|
|
"autoloader-suffix": "PeopleManager",
|
|
"vendor-dir": "lib/vendor"
|
|
},
|
|
"require": {
|
|
"php": ">=8.3 <=8.5",
|
|
"sabre/vobject": "^5.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^12.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"KTXM\\PeopleManager\\": "lib/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"KTXT\\PeopleManager\\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"
|
|
}
|
|
}
|