-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 1017 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
27
28
29
30
31
32
{
"description": "Welcome to the Random Sequence 10K Challenge repository! This project is a PHP implementation for generating a sequence of 10,000 random numbers while ensuring uniqueness. It was designed as part of a coding challenge to demonstrate efficient random number generation in PHP.",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Chad Payne",
"email": "chadpayne@gmail.com"
}
],
"scripts": {
"test": "./vendor/bin/phpunit --colors=always --testdox",
"lint": "phpcs",
"lint:fix": "phpcbf",
"format": "php-cs-fixer fix"
},
"autoload": {
"psr-4": {
"illmatix\\RandomSequence\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^11.4",
"squizlabs/php_codesniffer": "^3.11",
"friendsofphp/php-cs-fixer": "^3.65"
}
}