add implementation
All checks were successful
/ ls (push) Successful in 19s

This commit is contained in:
lubiana 2024-06-01 22:28:11 +02:00
parent 77fba06a1f
commit 13bfbbe528
Signed by: lubiana
SSH key fingerprint: SHA256:gkqM8DUX4Blf6P52fycW8ISTd+4eAHH+Uzu9iyc8hAM
20 changed files with 5598 additions and 0 deletions

50
composer.json Normal file
View file

@ -0,0 +1,50 @@
{
"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",
"pestphp/pest": "^2.34"
},
"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"
}
}