-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.06 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.06 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
{
"name": "zk2/sps-bundle",
"description": "Bundle implements the concept of \"Search - Pagination - Sort\" for tabular data",
"type": "symfony-bundle",
"homepage": "https://github.com/zk2/SPSBundle",
"license": "MIT",
"keywords": [
"sps",
"admin panel",
"content manager",
"search",
"pagination",
"sort",
"report"
],
"authors": [
{
"name": "Evgeniy Budanov",
"email": "budanov.ua@gmail.com"
}
],
"require": {
"php": ">=7.1",
"symfony/form": "^5",
"symfony/validator": "^5",
"symfony/dependency-injection": "^5",
"zk2/sps-component": "^1.4",
"symfony/config": "^5",
"symfony/http-kernel": "^5",
"sensio/framework-extra-bundle": "^5",
"symfony/translation": "^5",
"symfony/templating": "^5"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/var-dumper": "^5"
},
"autoload": {
"psr-4": {
"Zk2\\SpsBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "Tests"
}
}
}