forked from BenSampo/laravel-enum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.25 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"
}
],
"homepage": "https://github.com/bensampo/laravel-enum",
"require": {
"php": "^8",
"composer/class-map-generator": "^1",
"illuminate/contracts": "^9 || ^10",
"illuminate/support": "^9 || ^10",
"laminas/laminas-code": "^3.4 || ^4",
"nikic/php-parser": "^4.13"
},
"require-dev": {
"doctrine/dbal": "^3.4",
"ergebnis/composer-normalize": "^2.28.3",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.1.12",
"orchestra/testbench": "^7.6.1 || ^8",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpunit/phpunit": "^9.5.21",
"squizlabs/php_codesniffer": "^3.7.1"
},
"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
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BenSampo\\Enum\\EnumServiceProvider"
]
},
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover"
],
"all": [
"composer normalize",
"@fix",
"@test",
"@stan"
],
"fix": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"stan": "phpstan",
"test": "phpunit"
}
}