Skip to content

Commit 808af22

Browse files
committed
Added support to Composer and register as vendor on Packagist.org
1 parent 24ba723 commit 808af22

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "marcelomx/php-facedetection",
3+
"description": "PHP class to detect on face in images. A pure PHP port of an existing JS code from Karthik Tharavad.",
4+
"license": "GNU GPL v2",
5+
"homepage": "https://github.com/mauricesvay/php-facedetection",
6+
"authors": [
7+
{
8+
"name": "Maurice Svay",
9+
"homepage": "https://github.com/mauricesvay/php-facedetection/graphs/contributors"
10+
}
11+
],
12+
"require": {
13+
"php": ">=5.2.0",
14+
"ext-gd": "*"
15+
},
16+
"autoload": {
17+
"classmap": ["FaceDetector.php"]
18+
}
19+
}

composer.phar

791 KB
Binary file not shown.

0 commit comments

Comments
 (0)