-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.13 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
{
"name": "ecommit/doctrine-orm-refetch",
"description": "Refetch ORM Doctrine objects. Or detach all entities attached since a snapshot",
"keywords": ["doctrine", "refetch", "snapshot"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hubert Lecorche",
"email": "contact@e-commit.fr"
}
],
"autoload": {
"psr-4": { "Ecommit\\DoctrineOrmRefetch\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ecommit\\DoctrineOrmRefetch\\Tests\\": "tests/" }
},
"require": {
"php": "^8.1",
"doctrine/collections": "^1.5|^2.0",
"doctrine/common": "^2.11|^3.0",
"doctrine/orm": "^2.13|^3.0"
},
"require-dev": {
"doctrine/cache": "^1.11|^2.0",
"doctrine/data-fixtures": "^1.4.1",
"fakerphp/faker": "^1.9",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^10.0",
"symfony/cache": "*",
"vimeo/psalm": "^5"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}