forked from seregazhuk/php-pinterest-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 797 Bytes
/
composer.json
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
34
35
36
37
38
39
40
{
"name": "seregazhuk/pinterest-bot",
"description": "PHP library for Pintrest",
"keywords": [
"php",
"lib",
"pinterest"
],
"type": "package",
"minimum-stability": "dev",
"license": "Mit",
"autoload": {
"psr-4": {
"seregazhuk\\PinterestBot\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"seregazhuk\\PinterestBot\\": "src",
"seregazhuk\\tests\\": "tests"
}
},
"require": {
"php": ">=5.6.0",
"ext-curl": "*"
},
"require-dev": {
"codeclimate/php-test-reporter": "dev-master",
"mockery/mockery": "*",
"phpunit/phpunit": "*",
"humbug/humbug": "dev-master"
},
"authors": [
{
"name": "Serega Zhuk",
"email": "[email protected]",
"role": "Developer"
}
]
}