-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.74 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 1.74 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "chamber-orchestra/doctrine-extensions-bundle",
"type": "symfony-bundle",
"description": "Lightweight Symfony Doctrine ORM extensions for PostgreSQL — entity traits, soft-delete filter, repository base classes, decimal type, random() DQL",
"keywords": [
"symfony",
"symfony-bundle",
"doctrine",
"doctrine-orm",
"doctrine-extensions",
"postgresql",
"soft-delete",
"entity-traits",
"uuid",
"repository",
"dql"
],
"license": "MIT",
"authors": [
{
"name": "Andrew Lukin",
"email": "lukin.andrej@gmail.com",
"homepage": "https://github.com/wtorsi",
"role": "Developer"
}
],
"require": {
"php": "^8.5",
"symfony/dependency-injection": "8.0.*",
"symfony/config": "8.0.*",
"symfony/framework-bundle": "8.0.*",
"symfony/runtime": "8.0.*",
"symfony/clock": "8.0.*",
"symfony/uid": "8.0.*",
"doctrine/orm": "^3.0",
"doctrine/doctrine-bundle": "3.2.*"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"symfony/test-pack": "^1.2",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.75"
},
"autoload": {
"psr-4": {
"ChamberOrchestra\\DoctrineExtensionsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "8.0.*"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan analyse",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix"
}
}