forked from tastyigniter/flame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 1.97 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "tastyigniter/flame",
"description": "TastyIgniter Flame core library of TastyIgniter, add some flame to laravel",
"homepage": "https://tastyigniter.com",
"keywords": [
"tastyigniter",
"igniter",
"flame",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Samuel Adepoyigi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-PDO": "*",
"ext-zip": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"fideloper/proxy": "~4.0",
"doctrine/instantiator": "~1.0",
"doctrine/dbal": "~2.6",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^6.3|^7.3",
"kalnoy/nestedset": "~6.0",
"linkorb/jsmin-php": "~1.0",
"natxet/cssmin": "~3.0",
"symfony/yaml": "~5.1",
"scssphp/scssphp": "~1.0",
"league/glide": "~1.5",
"laravel/tinker": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"illuminate/database": "^8.0",
"illuminate/encryption": "^8.0",
"illuminate/filesystem": "^8.0",
"illuminate/queue": "^8.0",
"illuminate/support": "^8.0",
"illuminate/log": "^8.0",
"illuminate/mail": "^8.0",
"illuminate/events": "^8.0",
"illuminate/pagination": "^8.0",
"illuminate/routing": "^8.0",
"illuminate/validation": "^8.0",
"illuminate/view": "^8.0",
"illuminate/cache": "^8.0",
"mockery/mockery": "^1.3",
"fakerphp/faker": "^1.14"
},
"suggest": {
"ext-pdo_mysql": "Required to use MySQL databases"
},
"replace": {
"kriswallsmith/assetic": "*",
"leafo/scssphp": "*"
},
"autoload": {
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"Igniter\\Flame\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}