-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.27 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "psfs/nosql",
"description": "NOSQL package for PSFS",
"keywords": ["php", "library", "nosql", "api", "RESTful", "psfs"],
"homepage": "https://github.com/psfs/nosql",
"type": "library",
"require": {
"php": ">=8",
"psfs/core": "^2",
"ext-mongodb": "*",
"mongodb/mongodb": "^2"
},
"require-dev": {
"phpunit/phpunit": "^11",
"phpmd/phpmd": "@stable",
"roave/security-advisories": "dev-master"
},
"license": "MIT",
"authors": [
{
"name": "Fran López",
"email": "fran.lopez@stratecode.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"discard-changes": true,
"apcu-autoloader": true
},
"support": {
"email": "fran.lopez@stratecode.com",
"wiki": "https://github.com/psfs/nosql/wiki",
"issues": "https://github.com/psfs/nosql/issues"
},
"autoload": {
"psr-4": {
"NOSQL\\": "src/NOSQL"
}
},
"autoload-dev": {
"psr-4": {
"NOSQL\\Test\\": "tests/NOSQL/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}