-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
79 lines (79 loc) · 2.17 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
{
"name": "mll-lab/laravel-utils",
"description": "Shared Laravel utilities of MLL",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "benedikt@franke.tech"
},
{
"name": "Simon Bigelmayr",
"email": "s.bigelmayr@gmx.net"
}
],
"homepage": "https://github.com/mll-lab/laravel-utils",
"support": {
"issues": "https://github.com/mll-lab/laravel-utils/issues",
"source": "https://github.com/mll-lab/laravel-utils"
},
"require": {
"php": "^8.2",
"illuminate/support": "^9.51 || ^10 || ^11",
"mll-lab/php-utils": "^1.13 || ^2 || ^3 || ^4 || ^5",
"mll-lab/str_putcsv": "^1",
"ramsey/uuid": "^4.7",
"thecodingmachine/safe": "^1 || ^2"
},
"require-dev": {
"doctrine/dbal": "^3.6",
"ergebnis/composer-normalize": "^2",
"jangregor/phpstan-prophecy": "^1",
"jbzoo/mermaid-php": "^2.3",
"larastan/larastan": "^2",
"laravel/framework": "^9 || ^10 || ^11",
"mll-lab/graphql-php-scalars": "^4 || ^5",
"mll-lab/php-cs-fixer-config": "^5",
"mll-lab/rector-config": "^2",
"orchestra/testbench": "^7.7 || ^8 || ^9",
"phpstan/extension-installer": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9 || ^10 || ^11",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"suggest": {
"jbzoo/mermaid-php": "Used for visualization of the transition graph of the model states"
},
"autoload": {
"psr-4": {
"MLL\\LaravelUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "app/",
"MLL\\LaravelUtils\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MLL\\LaravelUtils\\LaravelUtilsServiceProvider",
"MLL\\LaravelUtils\\Database\\DatabaseServiceProvider",
"MLL\\LaravelUtils\\Mail\\MailServiceProvider"
]
}
}
}