-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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": "sportic/omniresult-common",
"description": "a common client scraper for getting data from timing websites",
"license": "MIT",
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sportic\\Omniresult\\": "src/",
"Sportic\\Omniresult\\Common\\Tests\\": "tests/Helpers"
}
},
"autoload-dev": {
"psr-4": {
"Sportic\\Omniresult\\Common\\Tests\\": "tests/",
"Sportic\\Omniresult\\Common\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^8.0",
"symfony/http-foundation": "^3|^4|^5|^6|^7",
"symfony/browser-kit": "^4.4|^5.0|^6.0|^7.0",
"symfony/http-client": "^6.0|^7.0"
},
"require-dev": {
"bytic/phpqatools": "^1.0"
},
"scripts": {
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"bytic/phpqatools": true
}
}
}