-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 973 Bytes
/
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
{
"name": "zareismail/flexi",
"description": "A Modular Laravel Solution with Unmatched Flexibility.",
"keywords": [
"laravel",
"flexi"
],
"license": "MIT",
"require": {
"php": "^8.1",
"illuminate/support": "^10.13",
"spatie/once": "^3.1",
"symfony/finder": "^6.3"
},
"require-dev": {
"orchestra/testbench": "^8.5",
"pestphp/pest": "^2.7"
},
"autoload": {
"psr-4": {
"Flexi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flexi\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Flexi\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"version": "1.1.0"
}