This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
98 lines (98 loc) · 2.85 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "2amigos/yii2-app-template",
"description": "Yii 2 Project Template",
"keywords": [
"yii2",
"framework",
"basic",
"project template",
"2amigos",
"structure"
],
"homepage": "https://github.com/2amigos/yii2-app-template",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/2amigos/yii2-app-template/issues?state=open",
"source": "https://github.com/2amigos/yii2-app-template"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.5",
"yiisoft/yii2-bootstrap": "~2.0.0",
"yiisoft/yii2-swiftmailer": "~2.0.0",
"vlucas/phpdotenv": "^2.4",
"league/container": "^2.2",
"symfony/finder": "^3.1",
"2amigos/yii2-config-kit": "^1.0"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0",
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-faker": "~2.0.0",
"yiisoft/yii2-shell": "~2.0.0",
"codeception/base": "^2.2.3",
"codeception/verify": "~0.3.1",
"codeception/specify": "~0.4.3",
"facebook/webdriver": "^1.2",
"squizlabs/php_codesniffer": "^2.7",
"friendsofphp/php-cs-fixer": "^2.0",
"phpmd/phpmd": "^2.4",
"guzzlehttp/guzzle": "> 4.1.4 <7.0"
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"php yii post-install/generate-cookie-validation"
],
"start-test-server": [
"php -r \"file_exists('public/index-test.php') || copy('tests/_support/index-test.php', 'public/index-test.php');\"",
"php tests/bin/yii serve --docroot=@web"
],
"stop-test-server": [
"php -r \"unlink('public/index-test.php');\"",
"kill $(lsof -ti tcp:8080)"
],
"start-server": [
"php yii serve --docroot=@web"
],
"stop-server": [
"kill $(lsof -ti tcp:8080)"
]
},
"autoload": {
"psr-4": {
"App\\": [
"./src/App"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"public/assets": "0777",
"yii": "0755"
}
]
}
},
"config": {
"preferred-install": {
"sidekit/*": "source",
"*": "auto"
}
}
}