-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.79 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": "edudobay/doctrine-symfony-serializer",
"description": "Map fields in Doctrine ORM using Symfony Serializer",
"type": "library",
"homepage": "https://github.com/edudobay/doctrine-symfony-serializer",
"license": "MIT",
"require": {
"php": "^8.0",
"doctrine/dbal": "^2.10 || ^3.2 || ^4.0",
"doctrine/event-manager": "^1.1 || ^2.0",
"doctrine/orm": "^2.12 || ^3.0",
"phpdocumentor/reflection-docblock": "^5.3",
"symfony/property-info": "^6.0 || ^7.0",
"symfony/serializer": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^9.5 || ^10",
"psr/cache": "^3.0",
"symfony/cache": "^6.0 || ^7.0",
"symfony/filesystem": "^6.0 || ^7.0",
"symfony/property-access": "^6.0 || ^7.0",
"vimeo/psalm": "^5.0"
},
"autoload": {
"exclude-from-classmap": ["/tests/", "/examples/"],
"psr-4": {
"Edudobay\\DoctrineSerializable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Edudobay\\DoctrineSerializable\\Examples\\": "examples/",
"Edudobay\\DoctrineSerializable\\Tests\\": "tests/"
}
},
"suggest": {
"psr/cache": "To support metadata caching"
},
"authors": [
{
"name": "Eduardo Dobay",
"email": "[email protected]"
}
],
"scripts": {
"lint:phpstan": "phpstan",
"lint:psalm": "psalm",
"lint:style": "php-cs-fixer fix --dry-run --diff",
"test:unit": "phpunit --testdox"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}