-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.48 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 2.48 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
72
73
74
75
{
"name": "debesha/doctrine-hydration-profiler-bundle",
"type": "symfony-bundle",
"description": "Information about hydration of doctrine entities at the profiler",
"keywords": [
"debesha",
"profiler",
"extra",
"bundle",
"doctrine",
"symfony",
"dev"
],
"homepage": "https://github.com/debesha/DoctrineProfileExtraBundle",
"license": "MIT",
"authors": [
{
"name": "Dmytro Malyshenko",
"homepage": "http://malyshenko.com"
}
],
"require": {
"php": ">=8.0",
"doctrine/orm": "^2.19|^3.0",
"doctrine/doctrine-bundle": "^2.11",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^5.4|^6.0|^7.0",
"twig/twig": "^3.11"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.11",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-symfony": "^1.4",
"phpstan/phpstan-doctrine": "^1.4"
},
"autoload": {
"psr-4": {
"Debesha\\DoctrineProfileExtraBundle\\": "."
}
},
"scripts": {
"test-unit": "vendor/bin/phpunit --testsuite=unit",
"test-integration-symfony73-orm2": [
"cd tests/integration/symfony73 && rm -rf var/cache",
"cd tests/integration/symfony73 && env COMPOSER=composer-orm2.json composer install",
"cd tests/integration/symfony73 && vendor/bin/phpunit"
],
"test-integration-symfony73-orm3": [
"cd tests/integration/symfony73 && rm -rf var/cache",
"cd tests/integration/symfony73 && env COMPOSER=composer-orm3.json composer install",
"cd tests/integration/symfony73 && vendor/bin/phpunit"
],
"test": [
"@test-unit",
"@test-integration-symfony73-orm2",
"@test-integration-symfony73-orm3"
],
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"cs:check": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --diff --config=.php-cs-fixer.php",
"stan": "vendor/bin/phpstan analyse --memory-limit=512M"
},
"archive": {
"exclude": [
"/tests"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}