-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.03 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "superfpl/super-fpl",
"description": "Fantasy Premier League Analytics Suite",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"SuperFPL\\Api\\": "api/src/"
}
},
"autoload-dev": {
"psr-4": {
"Maia\\Auth\\": "api/vendor/maia/framework/src/Auth/src/",
"Maia\\Cli\\": "api/vendor/maia/framework/src/Cli/src/",
"Maia\\Core\\": "api/vendor/maia/framework/src/Core/src/",
"Maia\\Orm\\": "api/vendor/maia/framework/src/Orm/src/"
}
},
"repositories": [
{
"type": "path",
"url": "./packages/fpl-client"
}
],
"require": {
"php": ">=8.2",
"superfpl/fpl-client": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}