-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 819 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 819 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
34
{
"name": "inject/stack",
"type": "library",
"description": "A minimal base for constructing web applications/frameworks based on a layered architecture. A PHP-style port of Ruby's Rack, webserver agnostic.",
"keywords": ["micro", "framework", "rack", "layered", "modular", "libevent", "mongrel2", "zeromq"],
"homepage": "https://github.com/InjectFramework/InjectStack",
"version": "0.2.0",
"license": "BSD-3",
"authors": [
{
"name": "Martin Wernståhl",
"email": "m4rw3r@gmail.com"
}
],
"require": {
"php": ">=5.3.0"
},
"recommend": {
"ext-iconv": "*",
"ext-libevent": ">=0.0.4",
"ext-memcached": "*",
"ext-pcntl": "*",
"ext-pcre": "*",
"ext-posix": "*",
"ext-sockets": "*",
"ext-tokenizer": "*",
"ext-zmq": "*"
},
"autoload": {
"psr-0": {
"Inject": "src/php/"
}
}
}