This repository has been archived by the owner on Jun 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "mathrix-education/lumen-zero",
"description": "The main library for Mathrix Lumen REST APIs.",
"version": "3.0.0-beta.11",
"type": "library",
"keywords": [
"php",
"lumen",
"zero"
],
"homepage": "https://github.com/mathrix-education/lumen-zero",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Mathieu Bour",
"email": "mathieu@mathrix.fr",
"homepage": "https://www.linkedin.com/in/mathieu-bour",
"role": "Developer"
}
],
"support": {
"email": "mathieu@mathrix.fr",
"issues": "https://github.com/mathrix-education/lumen-zero/issues",
"wiki": "https://github.com/mathrix-education/lumen-zero/wiki",
"source": "https://github.com/mathrix-education/lumen-zero",
"docs": "https://github.com/mathrix-education/lumen-zero"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-pdo": "*",
"brick/varexporter": "^0.2.1",
"haydenpierce/class-finder": "^0.3.1",
"illuminate/mail": "^6.3",
"laravel/lumen-framework": "^6.0"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.26.2",
"mathrix-education/coding-standard": "^1.0.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Mathrix\\Lumen\\Zero\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Mathrix\\Lumen\\Zero\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}