35 lines
856 B
JSON
35 lines
856 B
JSON
{
|
|
"name": "lubiana/uuid-webservice",
|
|
"description": "A simple PHP webservice for generating UUIDs and ULIDs.",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.4",
|
|
"symfony/uid": "^7.0",
|
|
"symfony/http-foundation": "^7.3"
|
|
},
|
|
"require-dev": {
|
|
"symplify/easy-coding-standard": "^12.5",
|
|
"rector/rector": "^2.1",
|
|
"phpstan/phpstan": "^2.1",
|
|
"phpstan/extension-installer": "^1.4",
|
|
"phpstan/phpstan-strict-rules": "^2.0"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"phpstan/extension-installer": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"fix": [
|
|
"rector",
|
|
"ecs --fix || ecs --fix"
|
|
],
|
|
"phpstan": "phpstan"
|
|
}
|
|
}
|