-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.17 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
{
"name": "mpalourdio/twitter-widget-bundle",
"description": "Simple bundle to easily display twitter timelines widgets in twig views",
"license": "MIT",
"keywords": [
"twig",
"symfony",
"twitter",
"widget",
"timeline"
],
"homepage": "https://github.com/mpalourdio/TwitterWidgetBundle",
"authors": [
{
"name": "@mpalourdio",
"email": "mpalourdio@gmail.com",
"homepage": "https://github.com/mpalourdio"
}
],
"require": {
"php": "^7.0",
"mpalourdio/twitter-widgets": "^0.2",
"symfony/config": "^2.7|~3.0",
"symfony/http-kernel": "^2.7|~3.0",
"symfony/dependency-injection": "^2.7|~3.0",
"twig/twig": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
"TwitterWidgetBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"TwitterWidgetBundleTests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}