This repository has been archived by the owner on Jul 28, 2022. It is now read-only.
forked from eko/SonataDatagridBundle
-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
62 lines (62 loc) · 1.76 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
{
"name": "sonata-project/datagrid-bundle",
"description": "Symfony SonataDatagridBundle",
"license": "MIT",
"type": "symfony-bundle",
"abandoned": true,
"keywords": [
"datagrid",
"sonata"
],
"authors": [
{
"name": "Thomas Rabaix",
"email": "thomas.rabaix@sonata-project.org",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataDatagridBundle/contributors"
}
],
"homepage": "https://docs.sonata-project.org/projects/SonataDatagridBundle",
"require": {
"php": "^7.3 || ^8.0",
"symfony/config": "^4.4 || ^5.3 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.3 || ^6.0",
"symfony/form": "^4.4 || ^5.3 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.3 || ^6.0"
},
"require-dev": {
"doctrine/orm": "^2.5",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16",
"psalm/plugin-symfony": "^3.0",
"ruflin/elastica": "^7.1",
"symfony/phpunit-bridge": "^6.0",
"vimeo/psalm": "^4.7.2"
},
"autoload": {
"psr-4": {
"Sonata\\DatagridBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\DatagridBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}