-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
122 lines (120 loc) · 3.91 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "allejo/bzion",
"description": "A CMS for BZFlag leagues offered as a replacement for the bz-owl project",
"type": "project",
"license": "GPL-3.0-only",
"require": {
"php": ">=5.6",
"ext-PDO": "*",
"ext-gd": "*",
"ext-pdo_mysql": "*",
"cboden/ratchet": "^0.2.8",
"doctrine/annotations": "~1.4.0",
"doctrine/inflector": "~1.1.0",
"erusev/parsedown": "^1.7.0",
"jms/serializer-bundle": "~0.13",
"liip/imagine-bundle": "~1.9.0",
"maciejczyzewski/bottomline": "dev-master",
"nelmio/api-doc-bundle": "~2.7",
"nesbot/carbon": "~1.14",
"robmorgan/phinx": "~0.8",
"sensio/framework-extra-bundle": "~3.0",
"swiftmailer/swiftmailer": ">=5.2.0",
"symfony/intl": "^2.8",
"symfony/monolog-bundle": "~2.8",
"symfony/swiftmailer-bundle": ">=2.3.0",
"symfony/symfony": "~2.8",
"twig/twig": "~1.18",
"yzalis/identicon": "~1.2.0"
},
"require-dev": {
"behat/behat": "~3.0",
"behat/mink": "~1.6",
"behat/mink-extension": "~2.0",
"behat/mink-browserkit-driver": "~1.2",
"behat/symfony2-extension": "~2.1.1",
"composer/composer": "~1.5",
"jdorn/sql-formatter": "~1.2",
"phpunit/phpunit": "~5.7",
"sensio/distribution-bundle": "~3.0",
"sensiolabs/security-checker": "~4.1",
"fzaninotto/faker": "^1.7"
},
"scripts": {
"post-create-project-cmd": [
"git submodule update --init",
"BZIon\\Composer\\ScriptHandler::buildConfig",
"BZIon\\Composer\\ScriptHandler::migrateDatabase",
"BZIon\\Composer\\ScriptHandler::clearAllCaches",
"BZIon\\Composer\\ScriptHandler::initializeChangelog",
"BZIon\\Composer\\ScriptHandler::showSuccessMessage"
],
"clear": [
"BZIon\\Composer\\ScriptHandler::clearCache"
],
"upgrade-dist": [
"git fetch && latestTag=$(git describe --tags `git rev-list --tags --max-count=1`) && git checkout $latestTag",
"git submodule sync",
"git submodule update --init",
"app/upgrade.sh --no-dev --ansi --optimize-autoloader install",
"BZIon\\Composer\\ScriptHandler::buildConfig",
"BZIon\\Composer\\ScriptHandler::migrateDatabase",
"BZIon\\Composer\\ScriptHandler::clearAllCaches",
"BZIon\\Composer\\ScriptHandler::showChangelog"
],
"migrate": [
"BZIon\\Composer\\ScriptHandler::buildConfig",
"BZIon\\Composer\\ScriptHandler::migrateDatabase",
"BZIon\\Composer\\ScriptHandler::showChangelog"
],
"migrate-database": [
"BZIon\\Composer\\ScriptHandler::migrateDatabase"
],
"update-configuration": [
"BZIon\\Composer\\ScriptHandler::buildConfig"
],
"release": [
"npm run-script assets",
"@clear"
],
"reset-avatars": [
"BZIon\\Composer\\UtilityHandler::resetAvatars"
]
},
"autoload": {
"classmap" : [
"app/AppKernel.php",
"models/",
"controllers/",
"src/Controller",
"src/Exception",
"src/Model",
"src/QueryBuilder",
"src/Database.php",
"src/Season.php",
"src/MonthDateRange.php",
"src/Service.php",
"src/TimeDate.php"
],
"psr-4" : {
"BZIon\\": "src/"
}
},
"autoload-dev": {
"classmap": [ "tests/" ]
},
"archive": {
"exclude": [ "!/vendor", "!/web/bundles" ]
},
"config": {
"platform": {
"php": "5.6.0"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.11-dev"
}
}
}