forked from KnpLabs/KnpLastTweetsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
106 lines (99 loc) · 3.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "knplabs/knp-last-tweets-bundle",
"type": "symfony-bundle",
"description": "Symfony2 bundle to easily add a widget with the latest tweets of a Twitter user to a page.",
"keywords": ["twitter", "tweets", "knplabs", "knp", "bundle"],
"homepage": "http://github.com/KnpLabs/KnpLastTweetsBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/KnpLastTweetsBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.0,<2.3-dev",
"symfony/yaml": ">=2.0,<2.3-dev",
"kriswallsmith/buzz": ">=v0.5",
"twig/twig": ">=1.6.5"
},
"require-dev": {
"knplabs/knp-zend-cache-bundle": "*",
"inori/twitter-app-bundle": "*",
"doctrine/cache": "*"
},
"repositories": [
{
"type": "package",
"package": {
"name": "abraham/twitteroauth",
"version": "dev-master",
"dist": {
"url": "https://github.com/abraham/twitteroauth/zipball/master",
"type": "zip"
},
"source": {
"url": "git://github.com/abraham/twitteroauth.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "zendframework/zend-cache",
"version": "2.0.0beta1",
"dist": {
"url": "http://packages.zendframework.com/get/Zend_Cache-2.0.0beta1.zip",
"type": "zip"
},
"source": {
"url": "http://packages.zendframework.com/",
"type": "pear",
"reference": "zf2/Zend_Cache"
},
"autoload": {
"psr-0": {
"Zend\\Cache": ""
}
},
"target-dir": "Zend/Cache"
}
},
{
"type": "package",
"package": {
"name": "zendframework/zend-filter",
"version": "2.0.0beta1",
"dist": {
"url": "http://packages.zendframework.com/get/Zend_Filter-2.0.0beta1.zip",
"type": "zip"
},
"source": {
"url": "http://packages.zendframework.com/",
"type": "pear",
"reference": "zf2/Zend_Filter"
},
"autoload": {
"psr-0": {
"Zend\\Filter": ""
}
},
"target-dir": "Zend/Filter"
}
}
],
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Knp\\Bundle\\LastTweetsBundle": "."
}
},
"target-dir": "Knp/Bundle/LastTweetsBundle"
}