-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 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
{
"name": "chiron/pipeline",
"type": "library",
"description": "Pipe your PSR15 middlewares and execute the stack. Support a PSR11 Container for Lazy Loading.",
"keywords": ["pipeline","middleware","lazy","container", "psr11", "psr15", "request", "handler"],
"homepage": "https://github.com/ncou/Chiron-Pipeline",
"license": "MIT",
"require": {
"php": "^8.0|^8.1",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-message": "^1.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"chiron/coding-standard": "^3.0",
"nyholm/psr7": "^1.4"
},
"autoload": {
"psr-4": {
"Chiron\\Pipeline\\": "src/"
}
},
"autoload-dev" : {
"psr-4": { "Chiron\\Pipeline\\Tests\\" : "tests/" }
},
"scripts": {
"phpunit": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover clover.xml",
"phpstan": "phpstan analyse src --level=max",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}