-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 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
{
"name": "carstenwindler/frameworkless-php-webservice",
"description": "Example for a PHP webservice built without a framework",
"type": "project",
"authors": [
{
"name": "Carsten Windler",
"email": "carsten@carstenwindler.de"
}
],
"require": {
"php": "^8.0",
"league/route": "^5",
"laminas/laminas-diactoros": "^2.2",
"league/container": "^3.3",
"laminas/laminas-httphandlerrunner": "^1.1",
"doctrine/dbal": "^2.10",
"monolog/monolog": "^2.2",
"middlewares/http-authentication": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symplify/easy-coding-standard": "^9",
"phpstan/phpstan": "^0.12.86",
"vimeo/psalm": "^4.7",
"guzzlehttp/guzzle": "^7.3"
},
"autoload": {
"psr-4": {
"MyMicroService\\":"src/"
}
},
"scripts": {
"analyze": "vendor/bin/phpstan analyse -l 5 --no-progress src ; ./vendor/bin/psalm",
"cs": "vendor/bin/ecs check src",
"csfix": "vendor/bin/ecs check src --fix",
"test": "vendor/bin/phpunit tests"
}
}