-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.03 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.03 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://getcomposer.org/schema.json",
"name": "bluebeetle/idempotency-middleware",
"type": "library",
"description": "Idempotency middleware for your Laravel API.",
"keywords": [
"laravel",
"idempotency",
"middleware"
],
"license": "MIT",
"require": {
"php": "^8.4",
"illuminate/cache": "^12.0|^13.0",
"illuminate/contracts": "^12.0|^13.0",
"illuminate/http": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"nesbot/carbon": "^3.9",
"ramsey/uuid": "^4.8",
"symfony/http-foundation": "^7.3|^8.0"
},
"require-dev": {
"eufaturo/coding-standards": "dev-main",
"orchestra/testbench": "^11.0",
"phpunit/phpunit": "^13.0"
},
"autoload": {
"psr-4": {
"BlueBeetle\\IdempotencyMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BlueBeetle\\IdempotencyMiddleware\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.dist.xml",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"./vendor/bin/phpunit -c phpunit-coverage.dist.xml"
],
"ecs:fix": "./vendor/bin/ecs --fix",
"ecs:check": "./vendor/bin/ecs",
"phpstan:check": "./vendor/bin/phpstan analyse --ansi",
"phpstan:generate-baseline": "./vendor/bin/phpstan --generate-baseline",
"rector:fix": "./vendor/bin/rector process --ansi",
"rector:check": "./vendor/bin/rector process --ansi --dry-run"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"eufaturo/coding-standards": true
}
},
"extra": {
"laravel": {
"providers": [
"BlueBeetle\\IdempotencyMiddleware\\IdempotencyServiceProvider"
]
}
},
"minimum-stability": "stable"
}