-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.68 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "araise/core-bundle",
"type": "symfony-bundle",
"description": "Reusable components used by other bundles of araise",
"license": "MIT",
"homepage": "https://araise.dev",
"minimum-stability": "stable",
"keywords": [
"symfony-ux"
],
"authors": [
{
"name": "whatwedo GmbH",
"email": "welove@whatwedo.ch"
}
],
"require": {
"php": ">=8.1",
"ext-bcmath": "*",
"doctrine/collections": "~1.0|~2.0",
"symfony/console": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/intl" : "^6.4|^7.0",
"symfony/options-resolver" : "^6.4|^7.0",
"whatwedo/twig-bootstrap-icons": "^1.0.0",
"symfony/translation": "^6.4|^7.0",
"symfony/form": "^6.4|^7.0",
"symfony/stopwatch": "^6.4|^7.0",
"symfony/test-pack": "^1.1.0",
"symfony/orm-pack": "^2.4.1"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"doctrine/doctrine-bundle": "^2.5.5",
"whatwedo/php-coding-standard": "^1.0",
"symfony/twig-bundle": "^6.4|^7.0",
"phpstan/phpstan": "^1.7"
},
"autoload": {
"psr-4": {
"araise\\CoreBundle\\": "src/",
"araise\\CoreBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}