This repository was archived by the owner on Apr 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·59 lines (59 loc) · 2.31 KB
/
composer.json
File metadata and controls
executable file
·59 lines (59 loc) · 2.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ballstatecber/datacenter-skeleton",
"description": "CBER Data Center Website Skeleton",
"homepage": "https://cberdata.org",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.1",
"ballstatecber/datacenter-plugin-cakephp3": "dev-master",
"cakephp/cakephp": "^3.5",
"cakephp/migrations": "~1.0",
"cakephp/plugin-installer": "~1.0",
"josegonzalez/dotenv": "dev-master",
"mobiledetect/mobiledetectlib": "2.*",
"twbs/bootstrap": "~3.0",
"xety/cake3-cookieauth": "1.*",
"friendsofcake/fixturize": "^1.0"
},
"require-dev": {
"cakephp/bake": "~1.1",
"cakephp/cakephp-codesniffer": "^3.0",
"cakephp/debug_kit": "~3.2",
"phpunit/phpunit": "*",
"psy/psysh": "@stable",
"dereuromark/cakephp-ide-helper": "^0.9.6"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification."
},
"autoload": {
"psr-4": {
"App\\": "src",
"DataCenter\\": "./vendor/ballstatecber/datacenter-plugin-cakephp3/src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"DataCenter\\Test\\": "./vendor/ballstatecber/datacenter-plugin-cakephp3/tests"
}
},
"scripts": {
"post-package-install": "DataCenter\\Console\\Installer::postUpdate",
"post-package-update": "DataCenter\\Console\\Installer::postUpdate",
"post-create-project-cmd": "DataCenter\\Console\\Installer::postInstall",
"post-install-cmd": "DataCenter\\Console\\Installer::postInstall",
"copy-vendor-files": "DataCenter\\Console\\Installer::copyVendorFiles",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"test": "phpunit --colors=always"
},
"prefer-stable": true
}