forked from settermjd/podcast-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.14 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": "settermjd/podcast-site",
"description": "Simple site to host my Podcast",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Matthew Setter",
"email": "[email protected]"
}
],
"require": {
"slim/slim": "2.6.2",
"slim/extras": "2.0.3",
"slim/logger": "0.1.0",
"slim/views": "0.1.3",
"twig/twig": "1.18.1",
"mnapoli/front-yaml": "^1.5",
"zendframework/zend-cache": "^2.5",
"zendframework/zend-config": "^2.5",
"martijnc/php-csp": "dev-master",
"mikey179/vfsStream": "^1.5",
"zendframework/zend-feed": "^2.5",
"aptoma/twig-markdown": "^1.2",
"michelf/php-markdown": "^1.5",
"zetacomponents/feed": "^1.4"
},
"require-dev": {
"codeception/codeception": "2.*",
"codeception/c3": "2.*",
"codeclimate/php-test-reporter": "^0.1.2"
},
"autoload": {
"psr-4": {
"PodcastSite\\": "src/PodcastSite"
}
},
"scripts": {
"post-install-cmd": [
"./bin/post-install.sh",
"Codeception\\c3\\Installer::copyC3ToRoot"
],
"post-update-cmd": [
"Codeception\\c3\\Installer::copyC3ToRoot"
]
}
}