-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.34 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
{
"name": "datomatic/enum-helper",
"description": "Simple opinionated framework agnostic PHP 8.1 enum helper",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alberto Peripolli",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Datomatic\\EnumHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Datomatic\\EnumHelper\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-mbstring": "*"
},
"require-dev": {
"pestphp/pest": "^2.0|^3.0",
"phpstan/phpstan": "^1.7",
"friendsofphp/php-cs-fixer": "^3.8",
"laravel/pint": "^1.18"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"cupestphp/pest-plugin": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"format": "vendor/bin/pint",
"analyse": "vendor/bin/phpstan analyse --ansi",
"test:types": "vendor/bin/phpstan analyse --ansi",
"test:unit": "vendor/bin/pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
],
"coverage": "@test:unit --coverage"
}
}