-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 919 Bytes
/
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
{
"name": "liubinas/upvote-bundle",
"description": "Upvote and downvote (aka thumbs up) bundle for Symfony project",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Tomas Liubinas",
"email": "[email protected]"
}
],
"require": {
"doctrine/doctrine-bundle": "^1.0",
"symfony/framework-bundle": "^3.0",
"doctrine/orm": "^2.0",
"symfony/var-dumper": "^3.0"
},
"require-dev": {
"phpspec/phpspec": "^4.1",
"phpunit/phpunit": "^6.4",
"symfony/browser-kit": "^3.0",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"symfony/security-bundle": "^3.0",
"symfony/expression-language": "^3.0"
},
"autoload": {
"psr-4": {
"Lt\\UpvoteBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}