-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 805 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 805 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
32
33
34
35
36
37
{
"name": "gourmet/dashboard"
, "description": "Dashboard plugin for CakePHP 3"
, "type": "cakephp-plugin"
, "keywords": ["cakephp", "dashboard"]
, "homepage": "http://github.com/gourmet/dashboard"
, "license": "MIT"
, "authors": [
{
"name": "Jad Bitar"
, "role": "Author"
}
]
, "support": {
"issues": "http://github.com/gourmet/dashboard/issues"
, "source": "http://github.com/gourmet/dashboard"
}
, "require": {
"cakephp/cakephp": "3.0.*-dev"
, "kriswallsmith/assetic": "~1.1"
, "leafo/scssphp": "~0.1"
}
, "require-dev": {
"phpunit/phpunit": "4.1.*"
}
, "autoload": {
"psr-4": {
"Gourmet\\Dashboard\\": "src"
, "Gourmet\\Dashboard\\Test\\Fixture\\": "tests/Fixture"
}
}
, "autoload-dev": {
"psr-4": {
"Gourmet\\Dashboard\\Test\\": "tests"
}
}
}