-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.47 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nlzet/doctrine-mapping-typings",
"type": "library",
"description": "convert doctrine entities into typescript typings",
"keywords": [
"symfony",
"cli",
"typescript",
"doctrine"
],
"homepage": "https://github.com/nlzet/NlzetDoctrineMappingTypings",
"license": "MIT",
"authors": [
{
"name": "Niels Verbeek",
"email": "niels@kreable.com",
"homepage": "https://www.kreable.com",
"role": "Senior Full-Stack Webdeveloper"
}
],
"require": {
"php": ">=8.1",
"doctrine/orm": "^2.10|^3.0",
"doctrine/common": "^3.0",
"doctrine/dbal": "^2.10|^3.0|^4.0",
"jms/serializer": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"symplify/easy-coding-standard": "^12.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^10",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"rector/rector": "^1.1",
"vimeo/psalm": "^5.8.0"
},
"autoload": {
"psr-4": { "Nlzet\\DoctrineMappingTypings\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Nlzet\\DoctrineMappingTypings\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-main": "0.1.x-dev"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"sort-packages": true
}
}
}