-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 2.23 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "bernhard-webstudio/placeholder-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle to generate placeholders for images",
"keywords": [
"Symfony",
"Placeholder"
],
"homepage": "https://github.com/BernhardWebstudio/PlaceholderBundle",
"license": "MIT",
"authors": [
{
"name": "Tim Bernhard",
"email": "[email protected]",
"homepage": "http://genieblog.ch",
"role": "Developer"
}
],
"scripts": {
"test": "./bin/simple-phpunit",
"static-analysis": "./bin/phpstan analyse src --level=0",
"mess-detector": "./bin/phpmd ./src text cleancode,unusedcode,codesize,design,naming",
"code-sniffer": "./bin/phpcs --standard=PSR2 src",
"code-sniffer-fix": "./bin/phpcbf --standard=PSR2 src"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"symfony/dependency-injection": "^v5.2.4|^v6.1.0",
"symfony/process": "^v5.2.4|^v6.1.0",
"symfony/config": "^v5.2.4|^v6.1.0",
"symfony/yaml": "^v5.2.4|^v6.1.0",
"symfony/http-kernel": "^6.1.12",
"symfony/console": "^v5.2.4|^v6.1.0",
"symfony/asset": "^v5.2.4|^v6.1.0",
"symfony/framework-bundle": "^6.0.4",
"symfony/finder": "^v5.2.4|^v6.1.0"
},
"require-dev": {
"doctrine/annotations": "^2.0",
"php-coveralls/php-coveralls": "^v2.2.0",
"phpmd/phpmd": "^2.8.1",
"phpstan/phpstan": "^1.2.0",
"rector/rector": "^0.12.5",
"sensio/framework-extra-bundle": "^v6.1.1",
"squizlabs/php_codesniffer": "^3.5.3",
"symfony/browser-kit": "^v5.2.4|^v6.1.0",
"symfony/css-selector": "^v5.2.4|^v6.1.0",
"symfony/phpunit-bridge": "^5.2.4|^v6.1.0",
"symfony/routing": "^6.2",
"symfony/templating": "^v5.2.4|^v6.1.0",
"symfony/twig-bundle": "^v5.2.4|^v6.1.0",
"twig/twig": "^v3.3.2"
},
"autoload": {
"psr-4": {
"BernhardWebstudio\\PlaceholderBundle\\": "src/",
"BernhardWebstudio\\PlaceholderBundle\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
}
}