-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
38 lines (38 loc) · 1.11 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
{
"name": "softonic/laravel-psr15-bridge",
"type": "library",
"description" : "Laravel PSR-15 middleware bridge",
"keywords": ["psr", "laravel", "middleware"],
"license": "Apache-2.0",
"homepage": "https://github.com/softonic/laravel-psr15-bridge",
"support": {
"issues": "https://github.com/softonic//issues"
},
"require": {
"php": ">=8.1",
"illuminate/http": "^9.0 || ^10.0 || ^11.0",
"nyholm/psr7": "^1.2",
"psr/http-server-middleware": "^1.0",
"symfony/psr-http-message-bridge": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Softonic\\Laravel\\Middleware\\Psr15Bridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Softonic\\Laravel\\Middleware\\Psr15Bridge\\": "tests/"
}
},
"scripts": {
"tests": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpunit": "phpunit --coverage-text",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"fix-cs": "php-cs-fixer fix -v --diff --allow-risky=yes;"
}
}