forked from mdziekon/UniEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
26 lines (26 loc) · 928 Bytes
/
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
{
"name": "mdziekon/uniengine",
"description": "OGame-like Game Engine",
"type": "project",
"license": "GPL-2.0",
"authors": [
{
"name": "Michal Dziekonski",
"homepage": "https://github.com/mdziekon"
}
],
"require": {
"smarty/smarty": "~3.1",
"phpmailer/phpmailer": "~6.0",
"google/recaptcha": "~1.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"migrate:run": "php ./utils/migrator/entry.php migrate:run",
"migrate:make": "php ./utils/migrator/entry.php migrate:make",
"ci-php-lint": "find . -not \\( -path ./action_logs -prune \\) -not \\( -path ./cache -prune \\) -not \\( -path ./tmp -prune \\) -not \\( -path ./vendor -prune \\) -name '*.php' -print0 | xargs -0 -n1 php -l",
"ci-php-phpcs": "phpcs ./ --standard=phpcs.xml --extensions=php"
}
}