forked from phpearth/stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.77 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
63
64
65
{
"name": "wwphp/stats",
"description": "Statistics generator for Facebook groups",
"keywords": [
"facebook",
"statistics",
"groups"
],
"homepage": "https://github.com/wwphp-fb/stats",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.0.0",
"facebook/graph-sdk": "^5.3",
"symfony/yaml": "^3.1",
"symfony/console": "^3.1",
"twig/twig": "^1.24",
"monolog/monolog": "^1.20",
"crey/conjurer": "dev-master#95f53a466db9072b35a18376a33abd5b9bb59afe",
"symfony/expression-language": "^3.1",
"incenteev/composer-parameter-handler": "~2.0",
"symfony/translation": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"mikey179/vfsStream": "^1"
},
"autoload": {
"psr-4": {"PHPWorldWide\\Stats\\": "src/"}
},
"autoload-dev": {
"psr-4": { "PHPWorldWide\\Stats\\Tests\\": "tests/" }
},
"authors": [
{
"name": "Peter Kokot",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/wwphp-fb/stats/graphs/contributors"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/crey-framework/conjurer"
}
],
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}