forked from gabrielgilini/cake_ptbr
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcomposer.json
38 lines (38 loc) · 939 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
{
"name": "jrbasso/cake_ptbr",
"type": "cakephp-plugin",
"description": "Repositório com arquivos para deixar seu Cake falando português.",
"homepage": "http://github.com/jrbasso/cake_ptbr",
"license": "MIT",
"authors": [
{
"name": "Juan Basso",
"email": "[email protected]",
"homepage": "http://blog.cakephp-brasil.org"
}
],
"require": {
"php": ">=5.5",
"cakephp/cakephp": "3.*",
"composer/installers": "*"
},
"require-dev": {
"phpunit/phpunit": "4.5.*",
"cakephp/cakephp-codesniffer": "2.*",
"symfony/dom-crawler": "2.*",
"symfony/css-selector": "2.*"
},
"autoload": {
"psr-4": {
"CakePtbr\\": "src",
"CakePtbr\\Test\\Fixture\\": "tests\\Fixture",
"CakePtbr\\Tests\\App\\": "tests\\App"
}
},
"autoload-dev": {
"psr-4": {
"CakePtbr\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}