-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 947 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 947 Bytes
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
{
"name": "strata/symfony-frontend",
"description": "Integration with Symfony framework for Strata Frontend",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Simon R Jones",
"email": "simon@studio24.net"
}
],
"require": {
"php": "^8.1",
"strata/frontend": "^0.9",
"symfony/http-kernel": "^6.4|^7.1",
"twig/twig": "^3.10"
},
"autoload": {
"psr-4": {
"Strata\\SymfonyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Strata\\SymfonyBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "9.5",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^1.11",
"roave/security-advisories": "dev-latest",
"symfony/test-pack": "^1.1"
},
"config": {
"allow-plugins": false
}
}