-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.19 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
{
"name": "ciricihq/blocks",
"authors": [
{
"name": "Cirici New Media",
"email": "[email protected]",
"homepage": "http://cirici.com",
"role": "Company"
},
{
"name": "Òscar Casajuana",
"email": "[email protected]",
"homepage": "http://racotecnic.com",
"role": "Developer"
},
{
"name": "Enyeli González",
"email": "[email protected]",
"role": "Developer"
}
],
"description": "Blocks plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": ["cakephp", "plugin", "view"],
"license": "GPL-3.0",
"require": {
"php": ">=5.4.19",
"cakephp/cakephp": "~3.2"
},
"autoload": {
"psr-4": {
"Cirici\\Blocks\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cirici\\Blocks\\Test\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "~5.3.0",
"squizlabs/php_codesniffer": "~2.5.1",
"ciricihq/cirici-codesniffer": "dev-master"
},
"scripts": {
"test": [
"phpunit"
]
}
}