-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "nelson/svgfilter",
"description": "Simple inline SVG filter for Nette/Latte.",
"require": {
"php": "^8.1",
"nette/di": "^3.0",
"nette/utils": "^3.0 || ^4.0",
"latte/latte": "^3.0",
"nette/caching": "^3.0",
"ext-dom": "*"
},
"require-dev": {
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-nette": "^1.0.0",
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^10.0.0",
"tracy/tracy": "^2.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"autoload": {
"psr-4": {
"Nelson\\SvgFilter\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Nelson\\SvgFilter\\Tests\\": "tests/" }
},
"scripts": {
"phpstan": "@php ./vendor/bin/phpstan analyse --configuration ./phpstan/phpstan.neon --memory-limit 512M",
"tests": "@php ./vendor/bin/phpunit --configuration tests/phpunit.xml tests"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}