Skip to content

Commit ae7fdd4

Browse files
committed
Enhancement: composer setup
1 parent d3e7663 commit ae7fdd4

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
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

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"authors": [
3+
{
4+
"email": "[email protected]",
5+
"name": "Jesper Veggerby",
6+
"role": "Lead"
7+
}
8+
],
9+
"autoload": {
10+
"psr-0": {
11+
"Image_Canvas": "./"
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+
},
28+
"require-dev": {
29+
"phpunit/phpunit": "*"
30+
}
31+
}

0 commit comments

Comments
 (0)