-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (75 loc) · 2 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
{
"name": "sourceboat/laravel-enumeration",
"type": "library",
"description": "Simple, extensible and powerful enumeration implementation for Laravel, based on eloquent/enumeration.",
"keywords": [
"sourceboat",
"enum",
"enumeration",
"laravel",
"package",
"validation",
"localization",
"typed",
"extendible",
"castable",
"casts",
"php"
],
"license": "MIT",
"homepage": "https://github.com/sourceboat/laravel-enumeration",
"authors": [
{
"name": "Kevin Buchholz",
"email": "kevin@sourceboat.com",
"homepage": "https://sourceboat.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.3",
"illuminate/console": "^8.0|^9.0",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "9.*",
"slevomat/coding-standard": "7.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Sourceboat\\Enumeration\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Sourceboat\\Enumeration\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"lint:phpcs": "vendor/bin/phpcs -s",
"lint:phpmd": "vendor/bin/phpmd src,tests text phpmd.xml",
"fix": "vendor/bin/phpcbf"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"laravel": {
"providers": [
"Sourceboat\\Enumeration\\EnumerationServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}