-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.13 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.13 KB
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
{
"name": "laraflow/core",
"description": "set of wrapper class for laraflow apps",
"keywords": [
"laraflow",
"laravel",
"core"
],
"homepage": "https://github.com/laraflow/core",
"license": "MIT",
"authors": [
{
"name": "Mohammad Hafijul Islam",
"email": "hafijul233@gmail.com",
"role": "Maintainer"
}
],
"require": {
"php": "^7.4|^8.1",
"ext-iconv": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-xmlreader": "*",
"illuminate/contracts": "^8.83",
"intervention/image": "^2.7",
"kyslik/column-sortable": "^6.4",
"laravolt/avatar": "^4.1",
"owen-it/laravel-auditing": "^13.0",
"php-flasher/flasher-laravel": "^1.7",
"rap2hpoutre/fast-excel": "^4.1",
"spatie/laravel-backup": "^6.16",
"spatie/laravel-medialibrary": "^9.12"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.7",
"nunomaduro/collision": "^5.11",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.24",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Laraflow\\Core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Laraflow\\Core\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"platform-check": false,
"platform": {
"php" : "7.4.30"
}
},
"extra": {
"laravel": {
"providers": [
"Laraflow\\Core\\CoreServiceProvider"
],
"aliases": {
"Xml": "Laraflow\\Core\\Facades\\XmlFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}