This commit is contained in:
parent
77fba06a1f
commit
13bfbbe528
20 changed files with 5598 additions and 0 deletions
50
composer.json
Normal file
50
composer.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue