-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 904 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
33
34
{
"name": "hans-peter-ording/nflfastr-symfony-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle to import data from nflfastR-data to symfony",
"license": "MIT",
"require": {
"php": ">=7.4",
"symfony/config": "^5.1",
"symfony/console": "^5.1",
"symfony/dependency-injection": "^5.1",
"symfony/http-kernel": "^5.1",
"symfony/orm-pack": "^2.0",
"league/flysystem-bundle": "^1.5",
"ext-zlib": "*",
"league/csv": "^9.6"
},
"require-dev": {
"symfony/maker-bundle": "^1.0@dev",
"symfony/http-client": "^5.1",
"symfony/phpunit-bridge": "^5.1"
},
"autoload": {
"psr-4": {
"HansPeterOrding\\NflFastrSymfonyBundle\\": "src/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": { "HansPeterOrding\\NflFastrSymfonyBundle\\Tests\\": "tests/" }
},
"minimum-stability": "dev"
}