-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 754 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 754 Bytes
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
{
"name": "jmjjg/cakephp3-postgres",
"description": "CakePHP 3 plugin that provides classes for adding default validation rules from the database table schema.",
"keywords": ["CakePHP", "PostgreSQL", "Validation"],
"homepage" : "https://github.com/jmjjg/cakephp3-postgres",
"license": "GPL-2.0+",
"type": "cakephp-plugin",
"require": {
"cakephp/cakephp": ">=3.0.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer" : "*"
},
"autoload": {
"psr-4": {
"Postgres\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Postgres\\Test\\": "tests"
}
},
"extra": {
"installer-name": "Postgres"
}
}