-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.32 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
{
"name": "steamysips/steamy-sips",
"type": "project",
"description": "A coffee shop website built using LAMP stack.",
"authors": [
{
"name": "creme332",
"email": "[email protected]",
"role": "Lead Developer"
},
{
"name": "Divyesh Jokhoo",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"homepage": "https://github.com/steamysips/steamy-sips",
"license": "CC-BY-SA-4.0",
"require": {
"ext-pdo": "*",
"ext-mbstring": "*",
"vlucas/phpdotenv": "^5.6",
"phpmailer/phpmailer": "^6.9",
"opis/json-schema": "^2.3",
"nesbot/carbon": "^3.3"
},
"scripts": {
"test": "phpunit tests",
"modeltest": "phpunit --testsuite models",
"apitest": "phpunit --testsuite api"
},
"autoload": {
"psr-4": {
"Steamy\\": "src/",
"Steamy\\Core\\": "src/core/",
"Steamy\\Controller\\": "src/controllers/",
"Steamy\\Controller\\API\\": "src/controllers/api/",
"Steamy\\Model\\": "src/models/",
"Steamy\\Tests\\": "tests/",
"Steamy\\Tests\\Model\\": "tests/models/",
"Steamy\\Tests\\Api\\": "tests/api/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"guzzlehttp/guzzle": "^7.0",
"fakerphp/faker": "^1.23"
},
"config": {
"platform": {
"php": "8.1"
}
}
}