-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (41 loc) · 929 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
40
41
42
43
44
45
46
47
{
"name": "juniwalk/tessa",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Martin Procházka",
"email": "juniwalk@outlook.cz"
}],
"autoload": {
"psr-4": {"JuniWalk\\Tessa\\": "src/"}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=8.1",
"juniwalk/utils": "^3.0|^4.0",
"nette/application": ">=2.4 <4.0",
"nette/di": ">=2.4 <4.0",
"nette/schema": "^1.0"
},
"require-dev": {
"nette/bootstrap": "^3.2",
"nette/tester": "^2.5",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"scssphp/scssphp": "^1.0",
"staabm/phpstan-todo-by": "^0.1",
"symfony/console": "^7.0",
"tracy/tracy": "^2.10"
},
"suggest": {
"scssphp/scssphp": "Enables compiling of SCSS files using ScssFilter."
}
}