-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (59 loc) · 1.71 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
{
"name": "phpminds/website",
"description": "A user-group website with meetup.com and joind.in integration.",
"license": "MIT",
"type": "project",
"keywords": ["slim-framework", "phpminds"],
"authors": [
{
"name": "Antonis Pavlakis",
"email": "adoni@pavlakis.info",
"homepage": "http://pavlakis.info"
},
{
"name": "Shaun Hare",
"email": "shaun@shaunhare.co.uk",
"homepage": "http://shaunhare.co.uk"
}
],
"autoload": {
"psr-4": {
"PHPMinds\\Tests\\" : "tests/phpunit",
"PHPMinds\\": "app/src"
}
},
"minimum-stability" : "stable",
"require": {
"php": "~7.0",
"slim/slim": "^3.0",
"slim/twig-view": "^1.1",
"slim/flash": "^0.1.0",
"monolog/monolog": "^1.13",
"guzzlehttp/guzzle": "^6.1",
"slim/http-cache": "^0.3.0",
"aura/sql": "^2.4",
"slim/csrf": "^0.4.0",
"erusev/parsedown": "^1.6",
"robmorgan/phinx": "^0.5.0",
"pavlakis/slim-cli" : "~1.0",
"dms/meetup-api-client": "2.0.1",
"pavlakis/seaudi": "~0.1",
"paragonie/csp-builder": "^2.0",
"pavlakis/csp-middleware": "^0.1.0",
"shaunhare/meetup-cache":"^1.0.4",
"ext-pdo": "*",
"doctrine/orm": "^2.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "^5.1",
"pavlakis/slim-behat-extension": "^1.0",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.2",
"behat/mink-goutte-driver": "^1.2"
},
"config": {
"bin-dir": "bin"
}
}