forked from MolbioUnige/Webservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "muffin/webservice",
"description": "Simplistic webservices for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"muffin",
"webservice",
"api",
"orm"
],
"homepage": "https://github.com/usemuffin/webservice",
"license": "MIT",
"authors": [
{
"name": "Jad Bitar",
"homepage": "http://jadb.io",
"role": "Author"
},
{
"name": "ADmad",
"homepage": "https://github.com/ADmad",
"role": "Author"
},
{
"name": "Marlin Cremers",
"homepage": "https://cvo-technologies.com",
"email": "m.cremers@cvo-technologies.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/usemuffin/webservice/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/usemuffin/webservice/issues",
"source": "https://github.com/usemuffin/webservice",
"irc": "irc://irc.freenode.org/muffin"
},
"require": {
"cakephp/orm": "^4.2"
},
"require-dev": {
"cakephp/cakephp": "^4.2",
"cakephp/cakephp-codesniffer": "^4.0",
"phpunit/phpunit": "^8.5 || ^9.3"
},
"autoload": {
"psr-4": {
"Muffin\\Webservice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Muffin\\Webservice\\Test\\": "tests",
"TestApp\\": "tests/test_app/src",
"SomeVendor\\SomePlugin\\": "tests/test_app/plugins/SomeVendor/SomePlugin/src",
"TestPlugin\\": "tests/test_app/plugins/TestPlugin/src"
}
}
}