-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.14 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
42
43
44
{
"name": "zicht/admin-bundle",
"description": "Admin utilities for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Zicht online",
"email": "info@zicht.nl"
}
],
"require": {
"php": "^8",
"symfony/console": "^6.4",
"symfony/yaml": "^6.4",
"sonata-project/doctrine-orm-admin-bundle": "^4",
"zicht/framework-extra-bundle": "^11",
"twig/twig": "^2.13 || ^3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^9.1",
"vimeo/psalm": "^5.16",
"zicht/page-bundle": "^9.x-dev",
"zicht/url-bundle": "^8.x-dev"
},
"autoload": {
"psr-4": {
"Zicht\\Bundle\\AdminBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZichtTest\\Bundle\\AdminBundle\\": "tests/"
}
},
"minimum-stability": "dev",
"scripts": {
"analysis": "psalm --no-cache",
"lint": "php-cs-fixer fix --dry-run --diff -vvv",
"lint-fix": "php-cs-fixer fix",
"test": "phpunit"
}
}