-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name": "josegonzalez/cakephp-version",
"description": "CakePHP ORM behavior to allow versioning of records",
"type": "cakephp-plugin",
"keywords": ["cakephp", "orm", "revision", "version"],
"homepage": "https://github.com/josegonzalez/cakephp-version",
"license": "MIT",
"authors": [
{
"name": "Jose Diaz-Gonzalez",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"cakephp/orm": "^5.0"
},
"require-dev": {
"cakephp/cakephp": "^5.0",
"cakephp/cakephp-codesniffer": "^5.1",
"php-coveralls/php-coveralls": "^0.4.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Josegonzalez\\Version\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Josegonzalez\\Version\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}