-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.27 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
52
53
54
{
"name": "lexik/modelo-bundle",
"description": "This bundle aim to provides an http client that performs and handle requests to modelo Api.",
"type": "symfony-bundle",
"keywords": ["bundle","modelo","symfony","symfony-bundle"],
"license": "MIT",
"authors": [
{
"name": "Dev Choosit",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"symfony/http-client": "^4.4|^5.4|^6.0",
"ext-dom": "*",
"symfony/serializer": "^4.4|^5.4|^6.0"
},
"autoload": {
"psr-4": {
"Choosit\\ModeloBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Choosit\\ModeloBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/yaml": "^4.4|^5.4|^6.0",
"symfony/phpunit-bridge": "^4.4|^5.1|^6.0",
"friendsofphp/php-cs-fixer": "*",
"symfony/framework-bundle": "^4.4|^5.4|^6.0",
"phpstan/phpstan": "*",
"ekino/phpstan-banned-code": "*",
"vimeo/psalm": "*",
"psalm/plugin-symfony": "*",
"infection/infection": "*"
},
"conflict": {
"symfony/framework-bundle": "<4.4"
},
"scripts": {
"test": [
"vendor/bin/simple-phpunit"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true
}
}
}