-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 964 Bytes
/
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
{
"name": "kreyu/data-table-doctrine-orm-bundle",
"description": "Provides Doctrine ORM integration for the DataTableBundle",
"type": "symfony-bundle",
"authors": [
{
"name": "Sebastian Wróblewski",
"email": "kontakt@swroblewski.pl"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^6.0",
"kreyu/data-table-bundle": "dev-feature/testing/filters",
"doctrine/orm": "^2.15",
"symfony/doctrine-bridge": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.23",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.11",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4",
"dg/bypass-finals": "^1.5"
},
"autoload": {
"psr-4": {
"Kreyu\\Bundle\\DataTableDoctrineOrmBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kreyu\\Bundle\\DataTableDoctrineOrmBundle\\Tests\\": "tests"
}
}
}