-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
38 lines (38 loc) · 1001 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
38
{
"name": "lucidarch/lucid",
"description": "An architecture for scalable software.",
"type": "library",
"license": "MIT",
"keywords": ["architecture", "lucid", "laravel"],
"homepage": "https://lucidarch.dev",
"bin": ["lucid"],
"support": {
"source": "https://github.com/lucidarch/lucid",
"issues": "https://github.com/lucidarch/lucid/issues",
"discussions": "https://github.com/lucidarch/lucid/discussions"
},
"authors": [
{
"name": "Abed Halawi",
"email": "[email protected]"
}
],
"require": {
"ext-dom": "*",
"mockery/mockery": "*",
"symfony/console": "*",
"symfony/filesystem": "*",
"symfony/finder": "*",
"symfony/process": "*"
},
"autoload": {
"psr-4": {
"Lucid\\": "src/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}