-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.22 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.22 KB
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": "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 Spiriit",
"email": "dev@spiriit.com"
}
],
"require": {
"php": "^8.1",
"ext-dom": "*",
"symfony/http-client": "^5.4|^6.4|^7.0",
"symfony/serializer": "^5.4|^6.4|^7.0"
},
"autoload": {
"psr-4": {
"Choosit\\ModeloBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Choosit\\ModeloBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/yaml": "^5.4|^6.4|^7.0",
"friendsofphp/php-cs-fixer": "*",
"symfony/phpunit-bridge": "^5.4|^6.4|^7.0",
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
"phpstan/phpstan": "*",
"rector/rector": "^2.0",
"ekino/phpstan-banned-code": "*",
"infection/infection": "*",
"symplify/easy-coding-standard": "^12.5"
},
"scripts": {
"test": [
"vendor/bin/simple-phpunit"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true
}
}
}