-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 788 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 788 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": "kjung/webkit2png-php",
"type": "library",
"keywords": ["webkit2png","webkit2png-php","kjung"],
"description": "PHP wrapper for the webkit2png binary on OS X.",
"license": "MIT",
"authors": [
{
"name": "Kevin Jung",
"email": "admin@kjung.ca",
"homepage": "https://github.com/kjunggithub"
}
],
"version": "1.0.0-dev",
"require": {
"php": ">=5.3.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/kjunggithub/webkit2png-php"
}
],
"autoload": {
"psr-0": {"kjung":"src/"}
},
"minimum-stability":"dev",
"extra": {
"branch-alias": {
"dev-master":"1.0.x-dev"
}
}
}