-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
88 lines (88 loc) · 2.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tilleuls/forgot-password-bundle",
"type": "symfony-bundle",
"description": "Provides a 'forgot password' feature for a REST API",
"keywords": [
"Forgot password",
"REST",
"API"
],
"license": "MIT",
"homepage": "https://github.com/coopTilleuls/CoopTilleulsForgotPasswordBundle",
"authors": [
{
"name": "Vincent CHALAMON",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/config": "^5.1 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.1 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.1 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.1 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.1.5 || ^6.0 || ^7.0",
"symfony/serializer": "^5.1 || ^6.0 || ^7.0"
},
"require-dev": {
"ext-json": "*",
"api-platform/core": "^3.0 || ^4.0",
"behat/behat": "^3.1",
"dg/bypass-finals": "^1.1",
"doctrine/data-fixtures": "^1.2",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^2.6.3",
"friends-of-behat/symfony-extension": "^2.0.11 || ^2.1.0",
"jms/serializer-bundle": "^1.4 || ^2.3 || ^3.0 || ^4.0 || ^5.0",
"laminas/laminas-code": "^3.4 || ^4.0",
"ocramius/proxy-manager": "^2.0.4",
"sebastian/comparator": "^3.0",
"symfony/asset": "^5.1 || ^6.0 || ^7.0",
"symfony/browser-kit": "^5.1 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.1 || ^6.0 || ^7.0",
"symfony/mailer": "^5.1 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.1 || ^6.0 || ^7.0",
"symfony/property-access": "^5.1 || ^6.0 || ^7.0",
"symfony/security-bundle": "^5.1 || ^6.0 || ^7.0",
"symfony/stopwatch": "^5.1 || ^6.0 || ^7.0",
"symfony/templating": "^5.1 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^5.1 || ^6.0 || ^7.0",
"symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
},
"suggest": {
"doctrine/doctrine-bundle": "To connect with Doctrine in Symfony project",
"doctrine/orm": "To connect with Doctrine",
"api-platform/core": "To connect with API Platform"
},
"autoload": {
"psr-4": {
"CoopTilleuls\\ForgotPasswordBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoopTilleuls\\ForgotPasswordBundle\\Tests\\": "tests",
"App\\": "features/app/src",
"PHPUnit\\": "vendor/bin/.phpunit/phpunit/src"
}
},
"scripts": {
"post-install-cmd": [
"vendor/bin/simple-phpunit --version"
],
"post-update-cmd": [
"vendor/bin/simple-phpunit --version"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.5.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}