This repository has been archived by the owner on Jul 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
56 lines (56 loc) · 1.54 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
{
"name": "php-earth/stats",
"description": "Statistics generator for Facebook groups",
"keywords": [
"facebook",
"statistics",
"groups"
],
"homepage": "https://github.com/php-earth/stats",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.2.5",
"facebook/graph-sdk": "^5.7",
"symfony/yaml": "^5.1",
"symfony/console": "^5.1",
"symfony/expression-language": "^5.1",
"symfony/dependency-injection": "^5.1",
"symfony/translation": "^5.1",
"symfony/config": "^5.1",
"incenteev/composer-parameter-handler": "^2.1",
"twig/twig": "^3.0",
"monolog/monolog": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {"PhpEarth\\Stats\\": "src/"}
},
"autoload-dev": {
"psr-4": { "PhpEarth\\Stats\\Tests\\": "tests/" }
},
"authors": [
{
"name": "PHP.earth Contributors",
"homepage": "https://github.com/php-earth/stats/graphs/contributors"
}
],
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "config/parameters.yaml"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}