forked from a-malinoff/plastek-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 965 Bytes
/
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
{
"name": "a-malinoff/plastek-bundle",
"description": "Plastek API for Symfony",
"keywords": [
"plastek",
"symfony-bundle",
"symfony-plastek",
"plastek-bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "a-malinoff",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"jms/serializer": "^3.13",
"symfony/framework-bundle": "5.3.*",
"symfony/http-client": "5.3.*",
"symfony/options-resolver": "5.3.*",
"symfony/validator": "5.3.*",
"symfony/yaml": "5.3.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.92",
"symfony/phpunit-bridge": "^5.3"
},
"autoload": {
"psr-4": {
"Malinoff\\PlastekBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Malinoff\\PlastekBundle\\Tests\\": "tests"
}
}
}