-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.15 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "andanteproject/nullable-embeddable-bundle",
"description": "A Symfony Bundle to handle nullable embeddables with Doctrine",
"keywords": [
"symfony",
"symfony-bundle",
"doctrine",
"doctrine-orm",
"embeddable",
"nullable",
"php",
"php8"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Andante Project",
"homepage": "https://github.com/andanteproject"
}
],
"require": {
"php": "^8.1",
"symfony/config": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/http-kernel": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/property-access": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"doctrine/orm": "^2.0 | ^3.0"
},
"autoload": {
"psr-4": {
"Andante\\NullableEmbeddableBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Andante\\NullableEmbeddableBundle\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/cache": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpstan/extension-installer": "^1.0",
"symfony/framework-bundle": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"doctrine/doctrine-bundle": "^2.0",
"symfony/test-pack": "^1.0",
"symfony/var-exporter": "^6.4 || ^7"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"suggest": {
"phpstan/phpstan": "To validate NullableEmbeddable classes at static analysis time",
"phpstan/extension-installer": "To automatically register the PHPStan extension (recommended)"
}
}