forked from tastyigniter/TastyIgniter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.39 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
{
"name": "tastyigniter/tastyigniter",
"description": "TastyIgniter is a free open source online ordering and restaurant management system",
"type": "project",
"keywords": [
"tastyigniter", "igniter", "restaurant",
"ordering", "ecommerce", "opensource"
],
"authors": [
{
"name": "Samuel Adepoyigi",
"email": "sam@sampoyigi.com",
"role": "Creator"
}
],
"license": "MIT",
"homepage": "https://tastyigniter.com",
"support": {
"paid": "https://tastyigniter.com/premium-support",
"issues": "https://github.com/tastyigniter/TastyIgniter/issues",
"forum": "https://forum.tastyigniter.com",
"discord": "https/tastyigniter.com/discord",
"docs": "https://tastyigniter.com/docs",
"source": "https://github.com/tastyigniter/TastyIgniter"
},
"require": {
"php": ">=7.4",
"tastyigniter/flame": "~1.2",
"laravel/framework": "~8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"facade/ignition": "^2.5",
"fakerphp/faker": "~1.14",
"squizlabs/php_codesniffer": "3.*",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"dont-discover": [
"*"
]
}
}
}