-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
61 lines (61 loc) · 1.84 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
{
"name": "playground/design",
"description": "Playground Design Module",
"type": "library",
"license": "MIT",
"keywords": [
"Laminas",
"playground",
"playground-design"
],
"homepage": "https://github.com/gregorybesson/PlaygroundDesign",
"authors": [
{
"name": "Greg Besson",
"email": "[email protected]",
"homepage": "http://www.playground.gg"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gregorybesson/zfc-datagrid"
}
],
"require": {
"php": ">=7.3",
"playground/core": "^6.0",
"laminas/laminas-developer-tools": ">=1.0.0",
"laminas/laminas-config": ">=2.6",
"laminas/laminas-serializer": ">=2.0.0",
"laminas/laminas-i18n": ">=2.7.3",
"laminas/laminas-router": ">=3.4",
"laminas/laminas-dependency-plugin": ">=2.1",
"laminas/laminas-cache": ">=2.6",
"doctrine/doctrine-laminas-hydrator": "^3.0",
"playground/zfc-datagrid": "^2.1"
},
"require-dev": {
"phpunit/phpunit": ">=4.0.0",
"squizlabs/php_codesniffer": ">=2.0.0",
"php-coveralls/php-coveralls": ">=2.4"
},
"replace": {
"laminas/laminas-cache-storage-adapter-apc": "*",
"laminas/laminas-cache-storage-adapter-dba": "*",
"laminas/laminas-cache-storage-adapter-mongodb": "*",
"laminas/laminas-cache-storage-adapter-wincache": "*",
"laminas/laminas-cache-storage-adapter-xcache": "*",
"laminas/laminas-cache-storage-adapter-zend-server": "*"
},
"autoload": {
"psr-4": {
"PlaygroundDesign\\": "src/"
}
},
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true
}
}
}