-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.35 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "loadsys/cakephp-libregistry",
"type": "cakephp-plugin",
"description": "The LibRegistry provides a mechanism for loading and storing instances of non-Cake PHP libraries. It works a lot like Cake 3's TableRegistry. Object instances can be requested by name and instantiated automatically, or can be loaded into the registry manually.",
"keywords": [
"cakephp",
"plugin",
"libraries",
"registry",
"singleton"
],
"license": "MIT",
"homepage": "https://github.com/loadsys/CakePHP-LibRegistry",
"authors": [
{
"name": "Brian Porter",
"email": "beporter@users.sourceforge.net"
}
],
"support": {
"issues": "https://github.com/loadsys/CakePHP-LibRegistry/issues",
"source": "https://github.com/loadsys/CakePHP-LibRegistry"
},
"require": {
"php": ">=5.4"
},
"require-dev": {
"cakephp/cakephp": "~3.0",
"phpunit/phpunit": "~4.7",
"loadsys/loadsys_codesniffer": "~3.0",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"LibRegistry\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/test",
"LibRegistry\\Test\\": "tests",
"TestApp\\": "tests/test_app/TestApp",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src"
}
},
"extra": {
"installer-name": "LibRegistry"
}
}