-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (59 loc) · 1.56 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
{
"name": "cbeerta/bliss",
"description": "A web-based RSS/ATOM aggregator",
"license": "MIT",
"authors": [
{
"name": "Claus Beerta",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/CBeerta/simplepie.git"
},
{
"type": "vcs",
"url": "https://github.com/CBeerta/Cling.git"
},
{
"type": "package",
"package": {
"name": "smarty/smarty",
"version": "3.1.14",
"dist": {
"url": "http://www.smarty.net/files/Smarty-3.1.14.zip",
"type": "zip"
},
"source": {
"url": "http://smarty-php.googlecode.com/svn/",
"type": "svn",
"reference": "tags/Smarty_3_1_14/distribution/"
},
"autoload": {
"classmap": ["libs/"]
}
}
}
],
"require": {
"php": ">= 5.3.0",
"simplepie/simplepie": "dev-master",
"slim/slim": "2.3.*",
"slim/views": "dev-master",
"cbeerta/cling": "dev-master",
"smarty/smarty": "3.1.14"
},
"require-dev": {
"squizlabs/php_codesniffer": "~1.4",
"phpunit/phpunit": "3.7.22"
},
"autoload": {
"psr-0": {
"Bliss": "src/",
"Bliss_Plugin": "src/"
}
}
}