forked from PHPOpenDocs/PHPOpenDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (78 loc) · 2.24 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "alwaysseptember/open-docs",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Danack",
"email": "[email protected]"
}
],
"require": {
"danack/rfc-codex": "0.0.2",
"danack/configurator": "1.1.0",
"danack/console": "^2.6",
"danack/esprintf": "^1.0.0",
"danack/looping-exec": "^0.3.0",
"danack/params": "^0.6.3",
"danack/json-safe": "^0.1.1",
"danack/slim-auryn-invoker": "^2.0.1",
"ext-redis": "*",
"justinrainbow/json-schema": "^5.2.7",
"ramsey/uuid": "4.0.1",
"rdlowrey/auryn": "^1.4.2",
"seld/jsonlint": "^1.7",
"slim/slim": "3.12.3",
"tholu/php-cidr-match": "^0.2.0",
"danack/aurynconfig": "^0.9.1",
"ext-json": "*",
"ext-curl": "*",
"danack/float-hex": "^1.0",
"michelf/php-markdown": "^1.9",
"thecodingmachine/safe": "^1.3",
"league/commonmark": "^1.5",
"ext-posix": "*"
},
"require-dev": {
"behat/behat": "^3.4",
"behat/mink-extension": "^2.3",
"danack/coding-standard": "0.1.0",
"dmore/behat-chrome-extension": "^1.1",
"behat/mink-selenium2-driver": "^1.3",
"behat/mink-goutte-driver": "^1.2",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "6.5.5",
"slevomat/coding-standard": "^4.8.4",
"squizlabs/php_codesniffer": "^3.3.1",
"yoast/yoastcs": "1.0"
},
"autoload": {
"psr-0": {
"Learning\\": "src/",
"NamingThings\\": "src/",
"OpenDocs\\": "src/",
"PHPFunding\\": "src/",
"PhpOpenDocs\\": "src/",
"RfcCodexOpenDocs\\": "src/",
"Work\\": "src/"
},
"files": [
"src/Learning/functions.php",
"src/NamingThings/functions.php",
"src/Work/functions.php",
"src/PhpOpenDocs/functions.php",
"src/PHPFunding/functions.php"
]
},
"autoload-dev": {
"psr-0": {
"PhpOpenDocsTest\\": "test/"
}
},
"config": {
"platform": {
"php": "7.4"
},
"platform-check": false
}
}