-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.4 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": "julioserpone/sla-manager",
"description": "A PHP package for calculating & tracking the Service Level Agreement completion timings",
"keywords": [
"julioserpone",
"sla-manager"
],
"homepage": "https://github.com/julioserpone/sla-manager",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Julio César Hérnandez",
"email": "[email protected]",
"role": "Developer Fullstack"
}
],
"require": {
"php": "^8.0",
"cmixin/enhanced-period": "^1.2",
"illuminate/collections": "^8|^9|^10|^11",
"nesbot/carbon": "^2",
"spatie/period": "^2"
},
"require-dev": {
"laravel/pint": "^1.0",
"pestphp/pest": "^1.21",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.0",
"spatie/invade": "^1.1",
"spatie/pest-plugin-test-time": "^1.1"
},
"autoload": {
"psr-4": {
"JulioSerpone\\SlaManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JulioSerpone\\SlaManager\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest--coverage-clover clover.xml"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
}
}