-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·83 lines (83 loc) · 2.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "micro/micro",
"description": "MicroPHP Framework: default plain application",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Stanislau Komar",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"micro/kernel-app": "^1.6",
"micro/autowire": "^1.6",
"micro/plugin-configuration-helper": "^1.6",
"micro/plugin-console": "^1.6",
"micro/plugin-http-pack": "^1.6",
"micro/plugin-logger-monolog": "^1",
"vlucas/phpdotenv": "^5.4",
"micro/plugin-doctrine": "^1.6.0",
"micro/plugin-twig": "^1.6",
"micro/plugin-twig-webpack-encore": "^1.6"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.29",
"phpunit/phpunit": "^10.1",
"vimeo/psalm": "^5.15",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.13",
"phpunit/php-code-coverage": "^10.1"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\Unit\\": "tests/Unit"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": [
],
"front-build": [
"yarn install",
"yarn build"
],
"test-all": [
"@test-psalm",
"@test-phpstan",
"@test-php-cs-try",
"@test-unit"
],
"test-phpstan": [
"php vendor/bin/phpstan"
],
"test-psalm": [
"php vendor/bin/psalm"
],
"test-php-cs-try": [
"PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer fix --verbose --dry-run --using-cache=no"
],
"test-php-cs-fix": [
"PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer fix --verbose --using-cache=no"
],
"test-unit": [
"php vendor/bin/phpunit"
]
}
}