-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (33 loc) · 1005 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": "intracto/smartcode-bundle",
"type": "symfony-bundle",
"description": "This bundle provides a way to generate software licenses with Symfony",
"keywords": ["software", "licenses", "generate"],
"homepage": "https://github.com/intracto",
"license": "MIT",
"authors": [
{
"name": "Joeri Timmermans",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"doctrine/orm": "~2.10",
"symfony/framework-bundle": "~5.4",
"symfony/validator": "~5.4",
"doctrine/annotations": "^1.13",
"symfony/cache": "^5.4"
},
"config": {
"bin-dir": "bin"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/phpunit-bridge": "^5.4"
},
"autoload": {
"psr-0": { "Intracto\\SmartCodeBundle": "" },
"psr-4": { "Intracto\\SmartCodeBundle\\": "" }
}
}