-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 946 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
35
36
37
{
"name": "luismateos92/loterias",
"description": "Script para guardar todos los datos de las loterías realizadas para generar estadisticas.",
"keywords": ["loterias", "euromillon", "primitiva", "luismateos92"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.1.3",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.3",
"league/flysystem": "^1.0",
"monolog/monolog": "^1.23",
"nesbot/carbon": "^2.16",
"php-di/php-di": "^6.0"
},
"require-dev": {
"mockery/mockery": "1.0.*",
"phpro/grumphp": "^0.14.0",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-4": {
"LuisMateos92\\Loteria\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable"
}