forked from theofidry/AliceDataFixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (68 loc) · 1.92 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "theofidry/alice-data-fixtures",
"description": "Nelmio alice extension to persist the loaded fixtures.",
"keywords": [
"Fixture",
"ORM",
"Alice",
"Faker",
"data",
"tests"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Théo FIDRY",
"email": "theo.fidry@gmail.com",
"homepage": "https://github.com/theofidry"
}
],
"require": {
"php": "^7.1",
"nelmio/alice": "^3.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.1",
"phpspec/prophecy": "^1.7",
"phpunit/phpunit": "^6.0",
"symfony/phpunit-bridge": "^3.3.2"
},
"suggest": {
"doctrine/data-fixtures": "To use Doctrine",
"doctrine/orm": "To use Doctrine ORM",
"alcaeus/mongo-php-adapter": "To use Doctrine with the MongoDB flavour",
"doctrine/mongodb": "To use Doctrine with the MongoDB flavour",
"doctrine/mongodb-odm": "To use Doctrine with the MongoDB flavour",
"doctrine/dbal": "To use Doctrine with the PHPCR flavour",
"doctrine/phpcr-odm": "To use Doctrine with the PHPCR flavour",
"jackalope/jackalope-doctrine-dbal": "To use Doctrine with the PHPCR flavour",
"illuminate/database": "To use Eloquent",
"ocramius/proxy-manager": "To avoid database connection on kernel boot"
},
"autoload": {
"psr-4": {
"Fidry\\AliceDataFixtures\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fidry\\AliceDataFixtures\\": [
"fixtures",
"tests"
]
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false
},
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}