-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.23 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
{
"name": "midnite81/core",
"description": "A package for core activity within laravel projects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Simon Rogers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Midnite81\\Core\\": "src/",
"Midnite81\\Core\\Tests\\": "tests/"
},
"files": [
"src/Functions/uuid.php",
"src/Functions/first.php",
"src/Functions/enum.php",
"src/Functions/time-conversion.php",
"helper.php"
]
},
"autoload-dev": {
"psr-4": {
},
"files": [
"src/Functions/uuid.php",
"src/Functions/first.php",
"src/Functions/enum.php",
"helper.php"
]
},
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ramsey/uuid": "^4.7",
"doctrine/annotations": "^2.0",
"php-coveralls/php-coveralls": "^0.1.0"
},
"require-dev": {
"laravel/pint": "^1.1",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-parallel": "^1.2",
"orchestra/testbench": "^7.6",
"phpstan/phpstan": "^1.8"
},
"scripts": {
"test": [
"@pint",
"./vendor/bin/pest --parallel --processes=24"
],
"coverage": [
"XDEBUG_MODE=coverage ./vendor/bin/pest --parallel --processes=24 --coverage --coverage-html build/html --coverage-xml build/coverage.xml --min=70",
"open build/html/index.html"
],
"coverageNoMin": [
"XDEBUG_MODE=coverage ./vendor/bin/pest --parallel --processes=24 --coverage --coverage-html build/html",
"open build/html/index.html"
],
"stan": "vendor/bin/phpstan --memory-limit=-1",
"pint": "vendor/bin/pint -v --config=./pint.json",
"docu": "php _bin/phpDocumentor.phar run -d src/ -t docs/generated"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Midnite81\\Core\\CoreServiceProvider"
]
}
}
}