-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
60 lines (60 loc) · 1.8 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
{
"name": "sulu/web-twig",
"type": "library",
"description": "The web twig extension for web-js component management",
"license": "MIT",
"authors": [
{
"name": "Sulu Web Twig contributors",
"homepage": "https://github.com/sulu/web-twig/graphs/contributors"
}
],
"require": {
"php": "^7.1 || ^8.0",
"twig/twig": "^1.38 || ^2.7 || ^3.0"
},
"require-dev": {
"php-cs-fixer/shim": "^3.64",
"jangregor/phpstan-prophecy": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^7.5 || ^8.5",
"symfony/intl": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/property-access": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"conflict": {
"symfony/intl": ">=8.0",
"symfony/property-access": ">=8.0"
},
"suggest": {
"symfony/property-access": "The ImageExtension requires the symfony/property-access service.",
"symfony/intl": "The IntlExtension requires the symfony/intl service."
},
"autoload": {
"psr-4": {
"Sulu\\Twig\\Extensions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sulu\\Twig\\Extensions\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit"
],
"lint": [
"@phpstan",
"@php-cs"
],
"phpunit": "@php vendor/bin/phpunit",
"phpstan": "@php vendor/bin/phpstan analyze -c ./phpstan.neon",
"php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix"
},
"config": {
"sort-packages": true
}
}