-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
composer.json
85 lines (85 loc) · 2.3 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
85
{
"name": "bensampo/laravel-enum",
"description": "Simple, extensible and powerful enumeration implementation for Laravel.",
"license": "MIT",
"type": "library",
"keywords": [
"bensampo",
"enum",
"laravel",
"package",
"validation"
],
"authors": [
{
"name": "Ben Sampson",
"homepage": "https://sampo.co.uk",
"role": "Developer"
},
{
"name": "Benedikt Franke",
"homepage": "https://franke.tech",
"role": "Developer"
}
],
"homepage": "https://github.com/bensampo/laravel-enum",
"require": {
"php": "^8",
"composer/class-map-generator": "^1",
"illuminate/contracts": "^9 || ^10 || ^11",
"illuminate/support": "^9 || ^10 || ^11",
"laminas/laminas-code": "^3.4 || ^4",
"nikic/php-parser": "^4.13.2 || ^5"
},
"require-dev": {
"doctrine/dbal": "^3.4",
"ergebnis/composer-normalize": "^2.28.3",
"larastan/larastan": "^2.6.3",
"mll-lab/php-cs-fixer-config": "^5.4",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.6.1 || ^8 || ^9",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpunit/phpunit": "^9.5.21 || ^10 || ^11",
"rector/rector": "^1",
"symplify/rule-doc-generator": "^11 || ^12 || ^13"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"BenSampo\\Enum\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BenSampo\\Enum\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BenSampo\\Enum\\EnumServiceProvider"
]
},
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover"
]
}
}