This repository was archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.53 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "fdevs/fixture",
"type": "library",
"description": "FDevs Fixture Component",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Konstantin Vytyagov",
"email": "vytyagov.k@gmail.com"
},
{
"name": "4devs Community",
"homepage": "https://github.com/4devs/fixture/contributors"
}
],
"require": {
"php": "^7.1",
"fdevs/executor": "dev-master"
},
"require-dev": {
"doctrine/data-fixtures": "^1.3.0",
"fdevs/container": "^0.1.0",
"friendsofphp/php-cs-fixer": "^2.10",
"psr/cache": "^1.0",
"symfony/console": "^3.4 | ^4.0 | ^5.0",
"symfony/config": "^3.4 | ^4.0 | ^5.0",
"symfony/dependency-injection": "^3.4 | ^4.0 | ^5.0",
"symfony/event-dispatcher": "^3.4 | ^4.0 | ^5.0",
"symfony/http-kernel": "^3.4 | ^4.0 | ^5.0"
},
"suggest": {
"doctrine/data-fixtures": "use adapter for doctrine fixtures",
"fdevs/container": "service locator using",
"psr/cache": "Used in cache based storage implementation",
"symfony/console": "Allow to use symfony console",
"symfony/config": "For configure bundle",
"symfony/dependency-injection": "use as symfony bundle",
"symfony/event-dispatcher": "Used for setting options into fixture command on execute using symfony events",
"symfony/http-kernel": "Allow use package as symfony bundle"
},
"config":{
"bin-dir": "bin",
"sort-packages": true
},
"autoload": {
"psr-4": {
"FDevs\\Fixture\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}