-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.15 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
{
"name": "anzusystems/contracts",
"description": "Interfaces, traits and abstract classes used in AnzuSystems ecosystem.",
"type": "library",
"keywords": ["anzusystems"],
"license": "Apache-2.0",
"authors": [
{
"name": "AnzuSystems Community",
"homepage": "https://github.com/orgs/anzusystems/people"
}
],
"require": {
"php": ">=8.1",
"symfony/http-foundation": "^6.1|^7.0",
"symfony/polyfill-uuid": "^1.26",
"symfony/security-core": "^6.1|^7.0"
},
"require-dev": {
"doctrine/orm": "^2.12",
"anzusystems/serializer-bundle": "^2.0|^3.0",
"symfony/validator": "^6.0|^7.0",
"symfony/uid": "^6.0|^7.0"
},
"suggest": {
"doctrine/orm": "Support persistence for trait/abstract class properties.",
"anzusystems/serializer-bundle": "Support serialization of trait/abstract class members.",
"symfony/validator": "Support validation via symfony asserts.",
"symfony/uid": "Support Uuid features."
},
"autoload": {
"psr-4": {
"AnzuSystems\\Contracts\\": "src/"
}
}
}