Files
provider_jmapc/composer.json
Sebastian Krupinski 6bf3cb11e1
All checks were successful
Build Test / test (pull_request) Successful in 30s
JS Unit Tests / test (pull_request) Successful in 28s
PHP Unit Tests / test (pull_request) Successful in 1m8s
feat: entity streaming
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-20 16:27:31 -05:00

53 lines
1.2 KiB
JSON

{
"name": "ktxm/provider-jmapc",
"type": "project",
"authors": [
{
"name": "Sebastian Krupinski",
"email": "krupinski01@gmail.com"
}
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"autoloader-suffix": "ProviderJmapc",
"vendor-dir": "lib/vendor",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sebastiankrupinski/jmap-client-php"
}
],
"require": {
"php": ">=8.2 <=8.5",
"sebastiankrupinski/jmap-client-php": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"KTXM\\ProviderJmapc\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"KTXT\\ProviderJmapc\\": "tests/php/"
}
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
],
"test:unit": "phpunit --configuration tests/php/phpunit.unit.xml --colors=always --testdox",
"test:coverage": "XDEBUG_MODE=coverage phpunit --configuration tests/php/phpunit.unit.xml --coverage-html .phpunit.coverage --coverage-text"
}
}