-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.13 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
{
"name": "deworkerpro/demo-php-http-framework",
"description": "Source code for our workshop",
"type": "project",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true
},
"require": {
"php": "^8.1",
"laminas/laminas-diactoros": "^2.24",
"laminas/laminas-httphandlerrunner": "^2.5",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.4"
},
"autoload": {
"files": [
"src/App/detectLang.php"
],
"psr-4": {
"App\\": "src/App/",
"Framework\\": "src/Framework/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\App\\": "tests/App/",
"Test\\Framework\\": "tests/Framework/"
}
},
"scripts": {
"php-cs-fixer": "php-cs-fixer --config=.php-cs-fixer.php --allow-risky=yes",
"psalm": "psalm --config=psalm.xml",
"test": "phpunit --colors=always"
}
}