-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.79 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.79 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
{
"name": "php-debugbar/doctrine-bridge",
"description": "Doctrine bridge for PHP Debugbar",
"keywords": ["debugbar", "doctrine", "dev"],
"homepage": "https://github.com/php-debugbar/php-debugbar",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maxime Bouroumeau-Fuseau",
"email": "maxime.bouroumeau@gmail.com",
"homepage": "http://maximebf.com"
},
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
}
],
"require": {
"php": "^8.2",
"php-debugbar/php-debugbar": "^3",
"doctrine/orm": "^2.10|^3.0",
"doctrine/dbal": "^3.6|^4"
},
"require-dev": {
"symfony/var-exporter": "^6.4|^7",
"symfony/dom-crawler": "^6.4|^7",
"symfony/browser-kit": "^6.4|^7",
"phpunit/phpunit": "^10",
"symfony/panther": "^1|^2.1",
"dbrekelmans/bdi": "^1"
},
"autoload": {
"psr-4": {
"DebugBar\\Bridge\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DebugBar\\Bridge\\Doctrine\\Tests\\": "tests"
}
},
"scripts": {
"install-demo": "@php cli-config.php orm:schema-tool:update --force",
"demo": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000"
],
"unit-test": "@php vendor/bin/phpunit --testsuite=Unit",
"browser-test": "@php vendor/bin/phpunit --testsuite=Browser",
"browser-debug": [
"@putenv PANTHER_NO_HEADLESS=1",
"@php vendor/bin/phpunit --testsuite=Browser --debug"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "beta"
}