-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
53 lines (53 loc) · 1.52 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
{
"name": "pavlakis/notts-digital",
"description": "Nottingham Digital events retrieval",
"keywords": [
"meetup", "tito", "events integration"
],
"homepage": "http://github.com/pavlakis/notts-digital",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Antonis Pavlakis",
"email": "[email protected]",
"homepage": "https://pavlakis.dev"
}
],
"autoload": {
"psr-4": {
"NottsDigital\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"NottsDigital\\tests\\" : "tests/phpunit"
}
},
"require": {
"guzzlehttp/guzzle": "^6.0",
"fabpot/goutte": "^3.1",
"zendframework/zend-diactoros": "^1.3",
"pimple/pimple": "^3.0",
"doctrine/cache": "^1.6",
"dms/meetup-api-client": "^2.4",
"monolog/monolog": "^1.22",
"ext-json": "*",
"wittestier/oauth2-meetup": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"scripts": {
"run-static-analysis": "phpstan analyse app/src --level 1",
"test": "phpunit -c tests/phpunit/phpunit.xml --colors=always",
"test-docs": "phpunit -c tests/phpunit/phpunit.xml --colors=always --testdox",
"test-coverage": "phpunit -c tests/phpunit/phpunit.xml --colors=always --coverage-html=tests/coverage/ "
},
"config": {
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
}
}
}