-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.13 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
{
"name": "logipro/fizzbuzz",
"type": "app",
"description": "Réalisation d'un FizzBuzz",
"keywords": ["fizzbuzz"],
"homepage": "https://github.com/frederic100/FizzBuzz",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Frédéric Royet",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/frederic-royet-42568566/",
"role": "Project Founder"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"infection/extension-installer": "0.1.2",
"infection/infection": "^0.27",
"phpstan/phpdoc-parser": "^1.20",
"phpstan/phpstan": "1.10.15",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "3.*",
"behat/behat": "^3.13"
},
"autoload": {
"psr-4" : {
"FizzBuzz\\" : "src/"
}
},
"autoload-dev": {
"psr-4" : {
"FizzBuzz\\Tests\\" : "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}