-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·70 lines (70 loc) · 2.07 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·70 lines (70 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "arnaud-ritti/mosparo-bundle",
"version": "1.2.2",
"type": "symfony-bundle",
"description": "A Symfony bundle for mosparo spam protection",
"keywords": [
"symfony",
"mosparo",
"spam protection",
"recaptcha"
],
"homepage": "https://github.com/arnaud-ritti/mosparo-bundle",
"license": "MIT",
"authors": [
{
"name": "Arnaud RITTI",
"homepage": "https://github.com/arnaud-ritti"
}
],
"require": {
"php": ">=8.0.2",
"ext-json": "*",
"symfony/config": "^5.4 || ^6.0",
"symfony/form": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/serializer": "^5.4 || ^6.0",
"symfony/validator": "^5.4 || ^6.0",
"symfony/twig-bundle": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"mosparo/php-api-client": "^1.0.2",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.4 || ^6.0",
"symfony/console": "^5.4 || ^6.0",
"friendsofphp/php-cs-fixer": "^3.0",
"squizlabs/php_codesniffer": "^3.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.2"
},
"autoload": {
"psr-4": {
"Mosparo\\MosparoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mosparo\\MosparoBundle\\Tests\\TestApplication\\": "tests/TestApplication/src",
"Mosparo\\MosparoBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"phpstan/extension-installer": true
}
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
}
}