-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.25 KB
/
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
41
42
43
44
45
46
47
{
"name": "devhelp/piwik-api",
"description": "Provides self-contained piwik methods that are able to make call to api with predefined or/and runtime arguments",
"homepage": "http://devhelp.pl",
"license": "MIT",
"authors": [
{
"name": "Paweł Barański",
"email": "[email protected]"
},
{
"name": "devhelp.pl",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Devhelp\\Piwik\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Devhelp\\Piwik\\Api\\": "tests/"
}
},
"require": {
"php": ">=5.3",
"psr/http-message": "1.*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"phpspec/prophecy-phpunit": "1.*",
"squizlabs/php_codesniffer": "2.*"
},
"scripts": {
"phpcs": "./bin/phpcs --standard=phpcs.xml src/",
"phpcbf": "./bin/phpcbf --standard=phpcs.xml src/",
"tests": "./bin/phpunit",
"tests-cov": "./bin/phpunit --coverage-html=./coverage"
},
"suggest": {
"devhelp/piwik-api-guzzle": "in order to use Guzzle-based PiwikClient"
},
"config": {
"bin-dir": "bin"
}
}