-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.77 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
{
"name": "ckrack/optimus-bundle",
"description": "Integrate Optimus in a Symfony project",
"type": "symfony-bundle",
"keywords": ["optimus", "identifier", "paramconverter", "param", "converter", "symfony", "bundle", "jenssegers", "twig", "twigfilter"],
"homepage": "https://github.com/ckrack/optimus-bundle",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Clemens Krack",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Ckrack\\OptimusBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Ckrack\\OptimusBundle\\": "spec/"
}
},
"require": {
"php": ">=7.2",
"jenssegers/optimus": "^1.1",
"sensio/framework-extra-bundle": "~3.0",
"symfony/http-kernel": "^4.0 || ^5.0"
},
"require-dev": {
"bossa/phpspec2-expect": "^3.0",
"ergebnis/phpstan-rules": "^0.15.0",
"friendsofphp/php-cs-fixer": "^2.16.3",
"phpspec/phpspec": "^4.3 || ^5.1 || ^6.1",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpstan/phpstan": "^0.12.31",
"rector/rector": "^0.7.37",
"roave/security-advisories": "dev-master",
"thecodingmachine/phpstan-strict-rules": "^0.12.0",
"twig/twig": "^2.7"
},
"suggest": {
"twig/twig": "Allows to use optimus in Twig template engine"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"lint:rector": "vendor/bin/rector process --dry-run",
"lint:php-cs-fixer": "vendor/bin/php-cs-fixer fix -v --dry-run",
"lint:phpstan": "vendor/bin/phpstan analyse --ansi --memory-limit=0",
"lint": [
"composer lint:rector",
"composer lint:php-cs-fixer",
"composer lint:phpstan"
],
"test": "vendor/bin/phpspec run --ansi"
}
}