-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 931 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
{
"name": "gponty/symfony-idloom-api-bundle",
"description": "Service to use api idloom.events in Symfony",
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0"
},
"keywords": ["symfony", "idloom", "api", "bundle"],
"homepage": "https://github.com/gponty/symfony-idloom-api",
"autoload": {
"psr-4": {
"Gponty\\IdLoomBundle\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Guillaume Ponty",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.17",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}