-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
57 lines (57 loc) · 1.48 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
{
"name": "techmeetups/techmeetups",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Jeremy Barthe",
"email": "jeremy.barthe@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": { "": "src" }
},
"autoload-dev": {
"psr-4": {
"spec\\": "spec/",
"Behat\\Features\\": "features/bootstrap"
},
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
"require": {
"php": ">=7.1",
"ext-intl": "*",
"symfony/symfony": "^3.0",
"ramsey/uuid": "^3.3",
"symfony/monolog-bundle": "^3.0",
"doctrine/common": "^2.6",
"doctrine/dbal": "^2.6",
"mnapoli/dbal-schema": "^0.2.1",
"php-http/guzzle6-adapter": "^1.1",
"guzzlehttp/psr7": "^1.4",
"webmozart/assert": "^1.2",
"twig/extensions": "^1.5",
"zendframework/zend-feed": "^2.9",
"sabre/vobject": "^4.1",
"techmeetups/meetup-api": "*@dev",
"nelmio/cors-bundle": "^1.5"
},
"require-dev": {
"symfony/var-dumper": "^3.1",
"phpspec/phpspec": "^4.0",
"behat/behat": "^3.0",
"friendsofphp/php-cs-fixer": "^2.9"
},
"repositories": [
{
"type": "path",
"url": "./packages/*"
}
],
"scripts": {
"compile": [
"make build"
]
}
}