-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·59 lines (59 loc) · 1.54 KB
/
composer.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.54 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
{
"name": "assoconnect/log-bundle",
"repositories": [
{
"type": "git",
"url": "https://github.com/assoconnect/log-bundle/"
}
],
"type": "library",
"description": "",
"keywords": ["php", "Symfony", "log"],
"homepage": "https://github.com/assoconnect/log-bundle/",
"license": "MIT",
"authors": [
{
"name": "AssoConnect",
"homepage": "https://www.assoconnect.com"
},
{
"name": "Florian GUIMIER"
}
],
"autoload": {
"psr-4": {
"AssoConnect\\LogBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AssoConnect\\LogBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/yaml": "^7.0",
"symfony/validator": "^7.0",
"phpstan/phpstan-symfony": "^2",
"assoconnect/php-quality-config": "^2.2",
"symfony/security-core": "^7.0"
},
"require": {
"php": "^8.4",
"symfony/framework-bundle": "^7.0",
"doctrine/dbal": "^2.10|^3.0",
"symfony/serializer": "^7.0",
"symfony/property-access": "^7.0",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^2.9",
"moneyphp/money": "^3.2|^4.0",
"ext-json": "*",
"ramsey/uuid": "^4.3",
"ramsey/uuid-doctrine": "^1.4",
"thecodingmachine/safe": "^3.4"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}