-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.15 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.15 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
{
"name": "assoconnect/doctrine-types-bundle",
"description": "Custom Doctrine Types.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["Doctrine", "Types"],
"authors": [
{
"name": "AssoConnect",
"homepage": "https://www.assoconnect.com"
},
{
"name": "Sylvain Fabre"
},
{
"name": "Julien Waguet"
},
{
"name": "Tristan Pouliquen",
"email": "tristan.pouliquen@yahoo.fr"
}
],
"autoload": {
"psr-4": {
"AssoConnect\\DoctrineTypesBundle\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"AssoConnect\\DoctrineTypesBundle\\Tests\\": "tests/"
}
},
"require": {
"moneyphp/money": "^3.0|^4.0",
"doctrine/dbal": "^2.8|^3.0",
"php": "^8.4",
"ramsey/uuid-doctrine": "^1.4"
},
"require-dev": {
"doctrine/cache": "~1.0",
"doctrine/annotations": "~1.0",
"symfony/framework-bundle": "^7.0",
"symfony/yaml": "^7.0",
"assoconnect/php-quality-config": "^2.2"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}