AsyncOrm/composer.json
2024-03-28 22:40:41 +01:00

50 lines
1.2 KiB
JSON

{
"name": "danog/async-orm",
"description": "Async ORM based on AMPHP v3 and fibers.",
"type": "library",
"license": "AGPL-3.0-only",
"autoload": {
"psr-4": {
"danog\\AsyncOrm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"danog\\AsyncOrm\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Alexander Pankratov",
"email": "alexander@i-c-a.su"
},
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"require": {
"amphp/mysql": "^3.0",
"amphp/postgres": "^2.0",
"amphp/redis": "^2.0",
"amphp/sync": "^2.2",
"revolt/event-loop": "^1.0.6"
},
"require-dev": {
"vimeo/psalm": "dev-master",
"phpunit/phpunit": "^11.0.6",
"amphp/php-cs-fixer-config": "^2.0.1",
"friendsofphp/php-cs-fixer": "^3.51",
"amphp/process": "^2.0",
"brianium/paratest": "^7.4"
},
"scripts": {
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php -d pcre.jit=0 vendor/bin/php-cs-fixer fix -v"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}