-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (70 loc) · 1.86 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
{
"name": "vanch3d/nvl-slim",
"description": "A Slim/Twig-based web application for research portfolio",
"type": "project",
"license" : "MIT",
"homepage" : "https://github.com/vanch3d/nvl-slim",
"keywords" : [
"Slim",
"Slim 3",
"Research",
"Technology Enhanced Learning",
"Zotero",
"SlideShare"
],
"authors" : [
{
"name" : "Nicolas Van Labeke",
"homepage" : "https://github.com/vanch3d",
"role" : "author"
}
],
"minimum-stability": "dev",
"prefer-stable" : true,
"repositories": [
{
"type": "git",
"url": "https://github.com/zircote/swagger-php"
}
],
"require" : {
"php": ">=7.0.0",
"slim/slim": "^3.8",
"slim/twig-view": "^2.1",
"slim/csrf": "^0.8.1",
"slim/flash": "^0.2.0",
"php-di/slim-bridge": "^1.0",
"symfony/var-dumper": "^3.2",
"vlucas/phpdotenv": "^2.4",
"nesbot/carbon": "1.22.1",
"monolog/monolog": "1.23.0",
"rmccue/requests": "1.7.0",
"smalot/pdfparser": "v0.11.0",
"nlp-tools/nlp-tools": "1.0.x-dev",
"phpunit/phpunit": "6.5.5",
"runcmf/runtracy": "0.2.10",
"slim/http-cache": "0.4.0",
"zircote/swagger-php": "3.x",
"league/html-to-markdown": "4.6.2"
},
"autoload": {
"psr-4": {
"NVL\\": "sources/NVL"
},
"files": [
"sources/Zotero/libZoteroSingle.php",
"sources/Zotero/CiteProc.php"
]
},
"autoload-dev": {
"psr-4": {
"NVL\\": "tests/NVL/"
}
},
"scripts": {
"post-update-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"swagger": "swagger ./resources/api/"
}
}