-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.79 KB
/
composer.json
File metadata and controls
57 lines (57 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
{
"name": "setono/doctrine-orm-batcher-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that integrates the Doctrine ORM batcher library",
"keywords": [
"symfony",
"setono",
"doctrine"
],
"license": "MIT",
"require": {
"php": ">=8.2",
"doctrine/doctrine-bundle": "^1.0 || ^2.0 || ^3.0",
"setono/doctrine-orm-batcher": "^0.6",
"symfony/config": "^5.4 || ^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"localheinz/composer-normalize": "^2.13",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpstan/phpstan": "^0.11 || ^1.0",
"phpstan/phpstan-strict-rules": "^0.11 || ^1.0",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master",
"symplify/easy-coding-standard": ">=6.0",
"thecodingmachine/phpstan-safe-rule": "^1.0.1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"localheinz/composer-normalize": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Setono\\DoctrineORMBatcherBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\DoctrineORMBatcherBundle\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon -l max src",
"check-style": "vendor/bin/ecs check --ansi src/ tests/",
"fix-style": "vendor/bin/ecs check --fix --ansi src/ tests/",
"test": "vendor/bin/phpunit"
}
}