-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.22 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"authors": [
{
"email": "jasper@coding.agency",
"name": "Jasper Koers"
}
],
"autoload": {
"psr-4": {
"Jaspur\\CodingFlow\\": "src/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"description": "Laravel package voor geautomatiseerde repositories, services, DTO's en tests",
"extra": {
"laravel": {
"providers": [
"Jaspur\\CodingFlow\\CodingFlowServiceProvider"
]
}
},
"license": "MIT",
"minimum-stability": "stable",
"name": "jaspur/coding-flow",
"prefer-stable": true,
"require": {
"driftingly/rector-laravel": "^2.0|dev-main",
"illuminate/console": "^12.0|^13.0",
"illuminate/support": "^12.2|^13.0",
"laravel-shift/blueprint": "^2.11",
"laravel/helpers": "^1.7.2",
"laravel/pint": "^1.21",
"pestphp/pest": "^3.7|^4.0",
"php": "^8.4",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.0|dev-main",
"spatie/laravel-package-tools": "^1.19"
},
"require-dev": {
"larastan/larastan": "^3.0"
},
"type": "library"
}