Skip to content

Commit b5ea970

Browse files
committed
Added composer support
1 parent 6e3d54a commit b5ea970

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
lib/RingcaptchaForTesting.php
22
lib/cacert.pem
3+
vendor/
4+
composer.lock
5+
composer.phar

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "ringcaptcha/ringcaptcha",
3+
"type": "library",
4+
"description": "A PHP module for communicating with the RingCaptcha API",
5+
"keywords": ["verification", "onboarding", "gateway"],
6+
"homepage": "http://ringcaptcha.com",
7+
"license": "Apache-2.0",
8+
"authors": [
9+
{
10+
"name": "Diego Saint Esteben",
11+
"email": "diego@saintesteben.me"
12+
},
13+
{
14+
"name": "GitHub Community",
15+
"homepage": "https://github.com/ringcaptcha/ringcaptcha-php/contributors"
16+
}
17+
],
18+
"require": {
19+
"php": ">=5.3.9",
20+
"ext-curl": "*"
21+
},
22+
"autoload": {
23+
"classmap": ["lib/"]
24+
}
25+
}

0 commit comments

Comments
 (0)