-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.7 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "qobo/cakephp-utils",
"description": "CakePHP utilities",
"keywords": ["cakephp", "utils"],
"type": "cakephp-plugin",
"license": "MIT",
"homepage": "https://www.qobo.biz",
"authors": [
{
"name": "Qobo Ltd",
"email": "support@qobo.biz",
"homepage": "https://www.qobo.biz",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/QoboLtd/cakephp-utils/issues",
"source": "https://github.com/QoboLtd/cakephp-utils"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.1"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/QoboLtd/cakephp-file-storage.git"
}
],
"require": {
"admad/cakephp-jwt-auth": "^2.0",
"admad/cakephp-sequence": "^2.2",
"alt3/cakephp-swagger": "^2.0",
"arvenil/ninja-mutex": "^0.6",
"burzum/cakephp-file-storage": "~2.0",
"burzum/cakephp-imagine-plugin": "dev-master#d21baf7378271d536982c8c0867fab3dcfa24cc8",
"cakedc/users": "^8.0",
"cakephp/cakephp": "^3.5 <3.7",
"cakephp/migrations": "^1.7",
"friendsofcake/crud": "^5.4",
"fzaninotto/faker": "^1.0",
"josegonzalez/dotenv": "^3.2",
"justinrainbow/json-schema": "^5.0",
"league/csv": "^8.1",
"lorenzo/audit-stash": "^2.0",
"maiconpinto/cakephp-adminlte-theme": "^1.0",
"mobiledetect/mobiledetectlib": "2.*",
"muffin/trash": "^2.1",
"myclabs/php-enum": "^1.5",
"pyrech/composer-changelogs": "^1.4",
"riesenia/cakephp-duplicatable": "^3.0",
"rlanvin/php-rrule": "^1.6",
"seld/jsonlint": "^1.7",
"webmozart/assert": "^1.4"
},
"require-dev": {
"qobo/cakephp-composer-dev": "^v1.0"
},
"autoload": {
"psr-4": {
"Qobo\\Utils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Qobo\\Utils\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"CakeDC\\Users\\Test\\": "vendor/cakedc/users/tests/"
}
},
"scripts": {
"test": [
"phpcs",
"phpunit --no-coverage"
],
"test-coverage": [
"phpcs",
"phpunit"
],
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
},
"scripts-descriptions": {
"test": "Runs phpcs and phpunit without coverage",
"test-coverage": "Runs phpcs and phpunit with coverage enabled"
},
"prefer-stable": true
}