-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.07 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.07 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
{
"name": "sourecode/doctrine-extension-bundle",
"description": "Provides a set of Doctrine extensions for Symfony applications.",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "chapterjason",
"email": "jason@sourecode.dev"
}
],
"require": {
"php": ">=8.4",
"doctrine/collections": "^2.3.0",
"doctrine/dbal": "^4.2.3",
"doctrine/orm": "^3.3",
"sourecode/timezone-bundle": "^0.1.1 || dev-master",
"symfony/cache": "^7.1",
"symfony/clock": "^7.1",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/http-foundation": "^7.1",
"symfony/http-kernel": "^7.1",
"symfony/intl": "^7.1",
"symfony/security-core": "^7.1",
"symfony/service-contracts": "^3.5"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.14",
"nyholm/symfony-bundle-test": "^3.0",
"phpbench/phpbench": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^7.1",
"symfony/phpunit-bridge": "^7.1",
"symfony/runtime": "^7.1",
"symfony/security-bundle": "^7.1",
"twig/twig": "^3.2"
},
"autoload": {
"psr-4": {
"SoureCode\\Bundle\\DoctrineExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": [
"tests/app/src/",
"tests/app_invalid/src/"
],
"SoureCode\\Bundle\\DoctrineExtension\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
},
"scripts": {
"benchmark": "./vendor/bin/phpbench run tests/Benchmark --report=default",
"profile": "./vendor/bin/phpbench xdebug:profile tests/Benchmark"
}
}