-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 848 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 848 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
29
30
31
{
"name": "robotusers/cakephp-table-inheritance",
"description": "Robotusers CakePHP STI & CTI pattern plugin",
"homepage": "https://github.com/robotusers/cakephp-table-inheritance",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=7.2.0",
"cakephp/orm": "^4.0"
},
"require-dev": {
"php": ">=7.2.0",
"phpunit/phpunit": "^8.0",
"cakephp/cakephp": "^4.0",
"cakephp/cakephp-codesniffer": "@stable"
},
"autoload": {
"psr-4": {
"Robotusers\\TableInheritance\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests",
"Robotusers\\TableInheritance\\Test\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
}