-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.63 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" : "realejo/sdk",
"description" : "Biblioteca com classes comuns utilizadas nos projetos da Realejo.",
"type" : "library",
"homepage" : "https://realejo.com.br",
"license" : "BSD-3-Clause",
"keywords" : [ "framework", "zend","zf3", "realejo", "laminas"],
"minimum-stability": "dev",
"prefer-stable": true,
"require" : {
"php" : "^7.1",
"ext-json" : "*",
"laminas/laminas-db" : "^2.8.1",
"laminas/laminas-cache": "^2.7.1",
"laminas/laminas-paginator": "^2.8.0",
"laminas/laminas-serializer": "^2.8.0",
"laminas/laminas-hydrator": "^2.2.1",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-i18n" : "~2.7",
"laminas/laminas-validator" : "~2.8",
"laminas/laminas-i18n-resources": "^2.5",
"laminas/laminas-filter": "^2.9"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "2.*",
"squizlabs/php_codesniffer": "^2.8 || ^3.0",
"phpunit/phpunit" : "^6.5 || ^7.0",
"laminas/laminas-dom": "~2.6.0",
"laminas/laminas-test": "^3.3"
},
"autoload" : {
"psr-4" : {
"Realejo\\Sdk\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"RealejoTest\\Sdk\\" : "test/src"
}
},
"suggest": {
"ext-gd" : "Needed to support resizing images in Realejo\\Image",
"ext-exif" : "Needed to support resizing images in Realejo\\Image",
"ext-fileinfo" : "Needed to support attachments in Realejo\\MailSender"
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf fix -v --diff --dry-run",
"test": "phpunit",
"cs-check-travis": "phpcs --config-set ignore_errors_on_exit 1;phpcs --config-set ignore_warnings_on_exit 1; phpcs"
}
}