-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1 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
{
"name": "diego-brocanelli/random-data",
"description": "Random Data",
"type": "library",
"license": "BSD-3-Clause",
"version":"3.0.0",
"homepage": "https://github.com/Diego-Brocanelli/randomData",
"minimum-stability": "dev",
"authors": [
{
"name": "Diego Brocanelli",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"autoload":{
"psr-4":{
"Random\\":"src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "4.0.x-dev",
"phpstan/phpstan": "0.12.x-dev",
"phpunit/phpunit": "10.0.x-dev"
},
"scripts":{
"tests":["vendor/bin/phpunit --testdox --color tests"],
"analyse":["vendor/bin/phpstan analyse src --level=8"],
"phpcs":["vendor/bin/phpcs --colors --standard=PSR1,PSR12 src"],
"phpcbf":["vendor/bin/phpcs --colors --standard=PSR1,PSR12 src"],
"all":["@tests", "@analyse", "@phpcs"]
}
}