-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.3 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
{
"name": "mpalourdio/zf2-twitter-widget",
"description": "ZF2 view helper to easily display twitter timelines widgets",
"license": "MIT",
"keywords": [
"framework",
"zf2",
"twitter",
"widget",
"timeline"
],
"homepage": "https://github.com/mpalourdio/zf2-twitter-widget",
"authors": [
{
"name": "@mpalourdio",
"email": "mpalourdio@gmail.com",
"homepage": "https://github.com/mpalourdio"
}
],
"require": {
"php": "^7.0",
"mpalourdio/twitter-widgets": "^0.2",
"zendframework/zend-servicemanager": "^2.3",
"zendframework/zend-view": "^2.3",
"zendframework/zend-modulemanager": "^2.3",
"zendframework/zend-mvc": "^2.3",
"zendframework/zend-serializer": "^2.3",
"zendframework/zend-log": "^2.3",
"zendframework/zend-i18n": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
"ZfTwitterWidget\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfTwitterWidgetTests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}