-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.02 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "orgasmicnightmare/cakephp-absolute-admin-theme",
"license": "MIT",
"description": "CakePHP 3 utitilies to use the AbsoluteAdmin Bootstrap template (https://wrapbootstrap.com/theme/absoluteadmin-bootstrap-admin-template-WB0822090)",
"type": "cakephp-plugin",
"authors": [
{
"name": "Olivier Sazos",
"email": "contact@oliviersazos.fr",
"homepage": "http://oliviersazos.fr"
}
],
"require": {
"cakephp/cakephp": "~3.0",
"friendsofcake/crud": "*",
"friendsofcake/crud-view": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"cakephp/migrations": "Database Migration plugin for CakePHP 3.0 based on Phinx"
},
"autoload": {
"psr-4": {
"AbsoluteAdmin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AbsoluteAdmin\\Test\\": "tests",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
}
}