-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·49 lines (49 loc) · 1.43 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
{
"name": "nepster-web/gambling-tech",
"description": "Gambling Algorithms for Certification.",
"keywords": [
"php",
"gambling",
"algorithms",
"random number generator",
"RNG",
"provably fair system",
"casino"
],
"support": {
"docs": "https://github.com/nepster-web/gambling-tech/blob/main/docs/guide/README.md",
"issues": "https://github.com/nepster-web/gambling-tech/issues",
"source": "https://github.com/nepster-web/gambling-tech"
},
"config": {
"sort-packages": true
},
"license": "MIT",
"authors": [
],
"require": {
"php": "^7.4|^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^v2.19"
},
"autoload": {
"psr-4": {
"Gambling\\Tech\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gambling\\TechTest\\": "tests/"
}
},
"scripts": {
"code-style-check": "php vendor/bin/php-cs-fixer fix --verbose --show-progress=dots --dry-run --config=.php_cs.php",
"code-style-fix": "php vendor/bin/php-cs-fixer fix --diff --config=.php_cs.php",
"test": "php vendor/bin/phpunit --colors=always",
"test-coverage": "php vendor/bin/phpunit --coverage-text --coverage-html ./docs/tmp/"
}
}