-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.17 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
{
"name": "market-board/market-board",
"homepage": "https://github.com/Ejdamm/market-board",
"description": "A lightweight online marketplace",
"config": {
"platform": {
"php": "7.2"
}
},
"require": {
"slim/slim": "^3.12",
"robmorgan/phinx": "^0.10.6",
"slim/twig-view": "^2.4",
"monolog/monolog": "^1.24",
"fzaninotto/faker": "^1.8",
"ext-pdo": "*",
"andrewdyer/slim3-mailer": "^1.2.0",
"bryanjhv/slim-session": "~3.0",
"gregwar/captcha": "^1.1"
},
"require-dev": {
"pds/skeleton": "^1.0",
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^8",
"dms/phpunit-arraysubset-asserts": "^0.1.0"
},
"autoload": {
"psr-4": {
"MarketBoard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarketBoard\\Tests\\Functional\\": "tests/functional/",
"MarketBoard\\Tests\\Unit\\": "tests/unit/",
"MarketBoard\\Tests\\Integration\\": "tests/integration/"
}
},
"scripts":{
"test": "phpunit",
"style": "scripts/psr-2.sh"
}
}