-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.4 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
{
"name": "berkmancenter/commuse",
"type": "project",
"description": "An open-source social media portal that integrates.",
"homepage": "https://cyber.harvard.edu",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"codeigniter4/framework": "^4.0",
"codeigniter4/shield": "^1.0@beta",
"elasticsearch/elasticsearch": "^7.17",
"gumlet/php-image-resize": "^2.0",
"guzzlehttp/guzzle": "^7.7",
"league/csv": "^9.15",
"rogervila/array-diff-multidimensional": "^2.1",
"voku/stringy": "^6.5"
},
"require-dev": {
"codeception/codeception": "^5.1",
"codeception/module-asserts": "*",
"codeception/module-phpbrowser": "*",
"codeception/module-webdriver": "^3.2",
"fakerphp/faker": "^1.22",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}