-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 836 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
{
"name": "robertvanlienden/useragreementsbundle",
"description": "User agreements made simple",
"type": "symfony-bundle",
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^6.4 || ^7.1"
},
"require-dev": {
"symplify/easy-coding-standard": "^12.5",
"phpunit/phpunit": "^11",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-doctrine": "^2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"RobertvanLienden\\UserAgreements\\": "src/"
}
},
"extra": {
"symfony": {
"bundle": {
"RobertvanLienden\\UserAgreements": ["all"]
}
}
},
"authors": [
{
"name": "Robert van Lienden"
}
]
}