Skip to content

Commit e6a1ae2

Browse files
committed
Merge pull request #4 from pear/topics/composer-for-pear
Updated/New Composer support for Image_Canvas
2 parents d3e7663 + 6206e72 commit e6a1ae2

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# composer related
2+
composer.lock
3+
composer.phar
4+
vendor

composer.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"authors": [
3+
{
4+
"email": "[email protected]",
5+
"name": "Jesper Veggerby",
6+
"role": "Lead"
7+
}
8+
],
9+
"autoload": {
10+
"psr-0": {
11+
"Image": "./"
12+
}
13+
},
14+
"description": "More info available on: http://pear.php.net/package/Image_Canvas",
15+
"include-path": [
16+
"./"
17+
],
18+
"license": "LGPL",
19+
"name": "pear/image_canvas",
20+
"support": {
21+
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Image_Canvas",
22+
"source": "https://github.com/pear/Image_Canvas"
23+
},
24+
"type": "library",
25+
"require": {
26+
"pear/pear_exception": "*",
27+
"pear/image_color": "*"
28+
},
29+
"require-dev": {
30+
"phpunit/phpunit": "*"
31+
}
32+
}

0 commit comments

Comments
 (0)