doctrine-ulid/composer.json

52 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2024-06-01 20:28:11 +00:00
{
"name": "lubiana/doctrine-ulid",
"description": "adds ulid type to doctrine wihtout requiring doctrine symfony bridge",
"type": "library",
"autoload": {
"psr-4": {
"Lubiana\\DoctrineUlid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "lubiana",
"email": "lubiana@hannover.ccc.de"
}
],
"require-dev": {
"lubiana/code-quality": "^1.7",
"pmjones/php-styler": "^0.16.0",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/extension-installer": "^1.3",
2024-06-02 09:20:20 +00:00
"pestphp/pest": "^2.34",
"mockery/mockery": "^1.6"
2024-06-01 20:28:11 +00:00
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"license": "MIT",
"scripts": {
"lint": [
"rector",
"php-styler apply",
"ecs --fix || ecs --fix"
],
"phpstan": "phpstan analyze",
"test": "pest"
},
"require": {
"symfony/uid": "^7.1",
"doctrine/orm": "^3.2"
}
}