forked from norberttech/static-content-generator-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 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
61
62
63
64
65
66
67
{
"name": "norberttech/static-content-generator-bundle",
"type": "library",
"description": "Generate static html pages from your symfony application",
"keywords": [
"Symfony",
"bundle",
"static",
"pages",
"generator"
],
"prefer-stable": true,
"require": {
"php": "~7.4.2 || ~8.0.0",
"ext-json": "*",
"norberttech/symfony-process-executor": "^2.0.4",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0"
},
"require-dev": {
"doctrine/annotations": "^1.11.1",
"symfony/dotenv": "^5.1",
"symfony/framework-bundle": "^5.2",
"symfony/maker-bundle": "^1.19",
"symfony/twig-pack": "^1.0",
"symfony/web-profiler-bundle": "^5.1",
"symfony/yaml": "^5.1"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"license": "MIT",
"autoload": {
"psr-4": {
"NorbertTech\\": [
"src/NorbertTech"
]
}
},
"autoload-dev": {
"psr-4": {
"FixtureProject\\": "tests/fixtures/project/src",
"NorbertTech\\Calendar\\Tests\\": "tests/NorbertTech/Tests/"
}
},
"scripts": {
"build": [
"@static:analyze",
"@test",
"@test:mutation"
],
"test": [
"tools/phpunit.phar"
],
"test:mutation": [
"tools/infection --threads=2"
],
"static:analyze": [
"tools/psalm --output-format=compact",
"tools/phpstan analyze -c phpstan.neon",
"tools/php-cs-fixer fix --dry-run"
],
"cs:php:fix": "tools/php-cs-fixer fix"
}
}