Files
chrono_manager/composer.json
Sebastian 39fc49ab07
PHP Integration Tests / Integration Tests (pull_request) Failing after 1m2s
PHP Unit Tests / test (pull_request) Successful in 1m5s
chore: implement php test suites
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-23 22:20:36 -04:00

40 lines
1021 B
JSON

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