-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.25 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
{
"name": "camurphy/bootstrap-menu-bundle",
"description": "Render Bootstrap menus using Symfony",
"type": "symfony-bundle",
"license": "MIT",
"version": "1.6.0",
"authors": [
{
"name": "Cameron Murphy",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3 || ^8.0",
"ext-json": "*",
"symfony/config": "^4.2|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^4.2|^5.0|^6.0|^7.0",
"symfony/security-bundle": "^4.2|^5.0|^6.0|^7.0",
"symfony/twig-bundle": "^4.2|^5.0|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"squizlabs/php_codesniffer": "^3.0",
"symfony/phpunit-bridge": "^7.0",
"spatie/phpunit-snapshot-assertions": "^4.0",
"phpunit/phpunit": "^9.5",
"dg/bypass-finals": "^1.0"
},
"autoload": {
"psr-4": { "Camurphy\\BootstrapMenuBundle\\": "" }
},
"scripts": {
"fix": "php-cs-fixer fix --ansi",
"lint": [
"phpcs",
"php-cs-fixer fix --dry-run --diff --ansi"
],
"test": "phpunit --colors=always",
"test-update-snapshots": "phpunit --colors=always -d --update-snapshots"
}
}