-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
81 lines (81 loc) · 2.57 KB
/
composer.json
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
76
77
78
79
80
81
{
"name": "pixelfederation/doctrine-resettable-em-bundle",
"homepage": "https://github.com/pixelfederation/doctrine-resettable-em-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for decorating default entity managers using a resettable decorator.",
"license": "MIT",
"authors": [
{
"name": "Martin Fris",
"email": "mfris@pixelfederation.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">= 8.2",
"doctrine/doctrine-bundle": "^2.10",
"doctrine/orm": "^2.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/proxy-manager-bridge": "^6.4",
"symfony/yaml": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"PixelFederation\\DoctrineResettableEmBundle\\": "src/"
}
},
"require-dev": {
"doctrine/annotations": "^2.0",
"friendsofphp/php-cs-fixer": "^3.13.2",
"nikic/php-parser": "^5.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.1",
"phpmd/phpmd": "^2.8",
"phpro/grumphp-shim": "^2.10",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^10.2",
"pixelfederation/coding-standards": "^3.0",
"psalm/phar": "^5.26",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"symfony/browser-kit": "^6.4|^7.0",
"symfony/flex": "^2.3",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"symplify/config-transformer": "^12.0"
},
"autoload-dev": {
"psr-4": {
"PixelFederation\\DoctrineResettableEmBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true,
"symfony/flex": true
}
},
"scripts": {
"grumphp8.2": "grumphp run --testsuite=php8.2",
"grumphp8.2-no-analyse": "grumphp run --testsuite=php8.2-no-analyse",
"grumphp8.3-no-analyse": "grumphp run --testsuite=php8.3-no-analyse",
"phpcs": "phpcs --standard=phpcs.ruleset.xml",
"phpcbf": "phpcbf --standard=phpcs.ruleset.xml --extensions=php --tab-width=4 -sp src tests",
"php-cs-fixer": "php-cs-fixer --config=./.php-cs-fixer.php fix src",
"phpmd": "phpmd src text phpmd.ruleset.xml",
"phpstan": "phpstan analyse src --level=7",
"phpunit": "phpunit",
"psalm": "psalm.phar"
},
"extra": {
"symfony": {
"require": "6.4.*"
}
}
}