-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
32 lines (32 loc) · 1.34 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
{
"name": "mdziekon/uniengine",
"description": "OGame-like Game Engine",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Michal Dziekonski",
"homepage": "https://github.com/mdziekon"
}
],
"require": {
"smarty/smarty": "3.1.45",
"phpmailer/phpmailer": "6.6.0",
"google/recaptcha": "~1.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"phpunit/phpunit": "^8",
"dms/phpunit-arraysubset-asserts": "^0.4.0"
},
"scripts": {
"migrate:run": "php ./utils/migrator/entry.php migrate:run",
"migrate:make": "php ./utils/migrator/entry.php migrate:make",
"utils:oneoffs:run": "php ./utils/one_offs/entry.php oneoffs:run",
"utils:oneoffs:make": "php ./utils/one_offs/entry.php oneoffs: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:verify": "phpcs ./ --standard=phpcs.xml --extensions=php --report-full --report-checkstyle=./tmp/phpcs-report.xml",
"ci:php:phpcs:report2pr": "cs2pr ./tmp/phpcs-report.xml",
"ci:php:test": "phpunit ./ --test-suffix UETest.php"
}
}