-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.59 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
{
"name": "dwalczyk/setting-bundle",
"description": "Symfony bundle that allows you to easily define, read and change settings.",
"type": "symfony-bundle",
"minimum-stability": "dev",
"license": "MIT",
"homepage": "https://dawidwalczyk.pl",
"authors": [
{
"name": "Dawid Walczyk",
"email": "[email protected]"
}
],
"version": "1.0.3",
"prefer-stable": true,
"require": {
"php": "^8.2",
"doctrine/orm": "^2.11",
"symfony/framework-bundle": "^6.0|^7.0",
"webmozart/assert": "^1.11",
"symfony/serializer": "^6.0|^7.0",
"symfony/cache": "^6.0|^7.0",
"symfony/stopwatch": "^6.0|^7.0",
"twig/twig": "^3.0",
"symfony/property-access": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"DWalczyk\\SettingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DWalczyk\\Tests\\SettingBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/phpstan": "^1.10",
"spaze/phpstan-disallowed-calls": "^3.1",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon --no-progress --memory-limit=-1 --ansi"
],
"csfixer": [
"vendor/bin/php-cs-fixer fix --config=.cs-fixer.config.php --dry-run --allow-risky=yes --diff --ansi"
],
"csfixer-fix": [
"vendor/bin/php-cs-fixer fix --config=.cs-fixer.config.php --allow-risky=yes --ansi"
],
"tests": [
"@php vendor/bin/phpunit -c phpunit.xml --display-deprecations"
]
}
}