forked from shameerc/TextPress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (32 loc) · 807 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (32 loc) · 807 Bytes
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
{
"name": "shameerc/textpress",
"type": "application",
"keywords": ["blog","flatfile","markdown"],
"license": "MIT",
"version": "2.0.1",
"description": "A flat-file blog engine for PHP",
"homepage": "http://textpress.shameerc.com",
"authors": [{
"name": "Shameer C",
"homepage": "http://blog.shameerc.com"
}],
"require": {
"php": ">=5.3.3",
"michelf/php-markdown" : "1.4.*",
"slim/slim": "2.4.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Textpress" : "src/shameerc"
}
},
"scripts": {
"run": [
"echo 'Started web server on http://localhost:8888'",
"php -S localhost:8888"
]
}
}