-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.21 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
48
49
50
51
52
{
"name": "ciricihq/stats",
"description": "A CakePHP plugin for counting things",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"plugin",
"stats",
"graphs"
],
"homepage": "https://github.com/ciricihq/cake-stats",
"license": "GPL-3.0",
"authors": [
{
"name": "Cirici New Media",
"homepage": "http://cirici.com"
},
{
"name": "Òscar Casajuana Alonso",
"email": "[email protected]",
"homepage": "http://racotecnic.com"
}
],
"support": {
"issues": "https://github.com/ciricihq/cake-stats/issues",
"source": "https://github.com/ciricihq/cake-stats"
},
"require": {
"cakephp/cakephp": ">=3.2.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^2.0",
"squizlabs/php_codesniffer": "^2.6",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Cirici\\Stats\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cirici\\Stats\\Test\\": "tests"
}
},
"scripts": {
"test": [
"phpcs src",
"phpunit"
]
}
}