-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.09 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
{
"name": "deviantlab/tabulator-bundle",
"description": "Tabulator Symfony bundle",
"type": "symfony-bundle",
"keywords": ["symfony-ux"],
"version": "0.4.2",
"license": "MIT",
"authors": [
{
"name": "Igor Chunikhin",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/flex": "^2.0",
"symfony/twig-bundle": "^6.4|^7.0",
"doctrine/doctrine-bundle": "^2.12",
"symfony/serializer": "^6.4|^7.0",
"doctrine/orm": "^3.0",
"symfony/stimulus-bundle": "^2.13"
},
"require-dev": {
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/phpunit-bridge": "^7.1"
},
"autoload": {
"psr-4": {
"DeviantLab\\TabulatorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DeviantLab\\TabulatorBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"test": "@php vendor/bin/simple-phpunit"
}
}