-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 975 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
39
40
41
42
43
44
45
46
47
48
{
"name": "lab/dag",
"description": ":running: Dag is opinionated expression data generator written in PHP to fake your API.",
"keywords": [
"php",
"api",
"data",
"faker",
"generator"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/pwnlabs/dag",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": "^7.3",
"contributte/http": "^0.3.0",
"contributte/utils": "^0.4.1",
"contributte/di": "^0.4.0",
"contributte/tracy": "^0.4.1",
"nette/routing": "^3.0.0",
"fzaninotto/faker": "^1.9.0",
"nelmio/alice": "^3.5.7"
},
"require-dev": {
"contributte/dev": "^0.1.0"
},
"autoload": {
"psr-4": {
"Dag\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}