forked from ker0x/messenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.24 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
{
"name": "kerox/messenger",
"type": "library",
"description": "PHP Library to interact with Facebook Messenger Platform",
"keywords": [
"facebook",
"messenger",
"facebook messenger",
"bot messenger",
"api"
],
"homepage": "https://github.com/ker0x/messenger",
"license": "MIT",
"authors": [
{
"name": "Romain Monteil",
"homepage": "https://kerox.fr",
"email": "[email protected]",
"role": "Author"
}
],
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.5",
"phpstan/phpstan": "^0.11.12",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Kerox\\Messenger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kerox\\Messenger\\Test\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan --level=max --memory-limit=\"-1\" --no-progress analyze",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff --verbose --config=.php_cs",
"phpunit": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}