summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f2f3e0fc25506eae468563167c96b069eae49ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
	"name"             : "icewind/streams",
	"description"      : "A set of generic stream wrappers",
	"license"          : "MIT",
	"authors"          : [
		{
			"name" : "Robin Appelman",
			"email": "icewind@owncloud.com"
		}
	],
	"require"          : {
		"php": ">=5.3"
	},
	"require-dev"      : {
		"satooshi/php-coveralls": "v1.0.0",
		"phpunit/phpunit": "^4.8"
	},
	"autoload"         : {
		"psr-4": {
			"Icewind\\Streams\\Tests\\": "tests/",
			"Icewind\\Streams\\": "src/"
		}
	}
}