-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.87 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.87 KB
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
{
"name": "yii2-extensions/app-basic",
"type": "project",
"description": "Web Application Basic",
"keywords": [
"yii2-extensions",
"application",
"basic",
"web"
],
"minimum-stability": "dev",
"license": "BSD-3-Clause",
"require": {
"php": ">=8.2",
"php-forge/foxy": "^0.2",
"ui-awesome/html-svg": "^0.3",
"vlucas/phpdotenv": "^5.6",
"yiisoft/yii2": "^2.0.54|^22",
"yiisoft/yii2-bootstrap5": "^2.0.50|^22"
},
"require-dev": {
"codeception/c3": "^2.8",
"codeception/codeception": "^5.0.0",
"codeception/lib-innerbrowser": "^4.0",
"codeception/module-asserts": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-yii2": "^1.1",
"codeception/verify": "^3.0",
"maglnet/composer-require-checker": "^4.6",
"php-forge/coding-standard": "^0.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-strict-rules": "^2.0.3",
"symfony/browser-kit": "^6.3",
"symfony/process": "^6.3",
"yii2-extensions/phpstan": "^0.3.0",
"yiisoft/yii2-debug": "^2.1.27|^22",
"yiisoft/yii2-gii": "^2.2.7|^22"
},
"autoload": {
"psr-4": {
"app\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"app\\tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
}
},
"config": {
"allow-plugins": {
"codeception/c3": true,
"yiisoft/yii2-composer": true,
"composer/installers": true,
"php-forge/foxy": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"rector": "./vendor/bin/rector process src",
"static": "./vendor/bin/phpstan analyse src --memory-limit=-1",
"sync-metadata": [
"curl -fsSL -o .editorconfig https://raw.githubusercontent.com/yii2-extensions/template/main/.editorconfig",
"curl -fsSL -o .gitattributes https://raw.githubusercontent.com/yii2-extensions/template/main/.gitattributes",
"curl -fsSL -o .gitignore https://raw.githubusercontent.com/yii2-extensions/template/main/.gitignore",
"curl -fsSL -o infection.json5 https://raw.githubusercontent.com/yii2-extensions/template/main/infection.json5",
"curl -fsSL -o phpstan.neon https://raw.githubusercontent.com/yii2-extensions/template/main/phpstan.neon",
"curl -fsSL -o phpunit.xml.dist https://raw.githubusercontent.com/yii2-extensions/template/main/phpunit.xml.dist"
],
"tests": "./vendor/bin/codecept run --env php-builtin"
}
}