-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
42 lines (42 loc) · 1.16 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
{
"name": "andrej-griniuk/cakephp-fractal-transformer-view",
"description": "CakePHP view builder utilizing Fractal library for entities transformation",
"type": "cakephp-plugin",
"keywords": ["cakephp", "api", "json", "rest", "fractal"],
"homepage": "http://github.com/andrej-griniuk/cakephp-fractal-transformer-view",
"license": "MIT",
"authors": [
{
"name": "Andrej Griniuk",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0",
"league/fractal": "^0.20.1"
},
"require-dev": {
"phpunit/phpunit": "^10",
"cakephp/bake": "^3.0"
},
"autoload": {
"psr-4": {
"FractalTransformerView\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"FractalTransformerView\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"suggest": {
"cakephp/bake": "Required to generate transformers."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}