-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.97 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
66
{
"name": "reun/twig-utilities",
"description": "Various Twig utilities and extensions",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kimmo Salmela",
"email": "[email protected]"
},
{
"name": "Reun Media",
"email": "[email protected]",
"homepage": "https://reun.eu"
}
],
"require": {
"php": "^8.2",
"twig/twig": "^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"ezyang/htmlpurifier": "^4.18",
"friendsofphp/php-cs-fixer": "^3.64",
"pestphp/pest": "^3.7",
"php-di/php-di": "^6.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"reun/php-app-config": "^0.2.0",
"slim/slim": "^4.4"
},
"suggest": {
"ezyang/htmlpurifier": "Required by HtmlPurify filter",
"psr/http-message": "Required for Slim utilities",
"psr/http-server-handler": "Required for Slim utilities",
"psr/http-server-middleware": "Required for Slim utilities",
"slim/slim": "Slim Framework ^4.0 is required for Slim specific features"
},
"autoload": {
"psr-4": {
"Reun\\TwigUtilities\\": "src/TwigUtilities"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"dev": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 -t tests/functional/TwigUtilities"
],
"lint": [
"composer validate",
"composer normalize",
"vendor/bin/php-cs-fixer fix .",
"vendor/bin/phpstan"
],
"test": "vendor/bin/pest --test-directory=pest"
}
}