-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.24 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
45
46
47
48
49
50
51
{
"name": "sfmok/request-input-bundle",
"type": "symfony-bundle",
"description": "Converts request data into DTO inputs objects with validation.",
"keywords": [
"request to input",
"request to dto",
"bundle",
"input",
"dto"
],
"authors": [
{
"name": "Mokhtar Tlili",
"email": "[email protected]",
"homepage": "https://devcore.tools"
}
],
"license": "MIT",
"require": {
"php": ">=8.1",
"symfony/http-kernel": "^6.2|^7.0",
"symfony/http-foundation": "^6.2|^7.0",
"symfony/serializer": "^6.2|^7.0",
"symfony/validator": "^6.2|^7.0",
"symfony/dependency-injection": "^6.2|^7.0",
"symfony/property-access": "^6.2|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/framework-bundle": "^6.2|^7.0",
"friendsofphp/php-cs-fixer": "^3.5",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"Sfmok\\RequestInput\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sfmok\\RequestInput\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --coverage-text",
"fix-cs": "vendor/bin/php-cs-fixer fix src/",
"phpstan": "vendor/bin/phpstan analyse src tests"
},
"minimum-stability": "dev"
}