-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.33 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.33 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
52
53
54
{
"name": "playground/user",
"description": "Module user",
"type": "library",
"license": "MIT",
"keywords": [
"Laminas",
"playground",
"user"
],
"homepage": "https://github.com/gregorybesson/PlaygroundUser",
"authors": [
{
"name": "Greg Besson",
"email": "gregory.besson@playground.gg",
"homepage": "http://www.playground.gg"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gregorybesson/zfc-datagrid"
}
],
"require": {
"php": ">=7.3.0",
"facebook/graph-sdk": "^5.6",
"playground/design": "^6.0",
"laminas/laminas-developer-tools": ">=1.0.0",
"hybridauth/hybridauth": "@RC",
"laminas/laminas-dependency-plugin": "^2.1",
"lm-commons/lmc-user": "^3.5"
},
"require-dev": {
"phpunit/phpunit": ">=4.0.0",
"squizlabs/php_codesniffer": ">=2.0.0",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
"PlaygroundUser\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true
}
}
}