-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.12 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
{
"name": "josue/calidad-u2",
"description": "Proyecto de calidad de software - Unidad 2",
"type": "project",
"license": "proprietary",
"autoload": {
"psr-4": {
"Controllers\\": "src/Controllers/",
"Models\\": "src/Models/",
"Config\\": "src/Config/",
"Exceptions\\": "src/Exceptions/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"behat/mink-extension": "^2.3",
"behat/mink-selenium2-driver": "^1.7",
"dmore/chrome-mink-driver": "^2.9",
"php-webdriver/webdriver": "^1.15",
"emuse/behat-html-formatter": "^2.0",
"infection/infection": "0.26",
"pestphp/pest": "^1.23"
},
"scripts": {
"test:mutation": [
"vendor/bin/infection --threads=4 --min-msi=60"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true
}
}
}