This repository was archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.3 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.3 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
{
"name": "theofidry/alice-bundle-extension",
"description": "Extension to load fixtures files with HautelookAliceBundle.",
"keywords": ["Symfony", "Fixture", "ORM", "Alice", "Faker", "Behat", "Context", "Extension"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Théo FIDRY",
"email": "theo.fidry@gmail.com",
"homepage": "https://github.com/theofidry"
}
],
"require": {
"php": ">=5.4.0",
"behat/behat": "~3.0",
"behat/symfony2-extension": "^2.0",
"hautelook/alice-bundle": "~1.0"
},
"require-dev": {
"doctrine/orm": "~2.4",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"friendsofphp/php-cs-fixer": "~2.0@dev",
"phpunit/phpunit": "^4.8",
"symfony/console": "~2.1",
"symfony/expression-language": "^2.7",
"symfony/framework-bundle": "~2.1",
"symfony/yaml": "~2.1",
"theofidry/psysh-bundle": "~1.1",
"doctrine/mongodb-odm-bundle": "~3.0"
},
"autoload": {
"psr-4": {
"Fidry\\AliceBundleExtension\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fidry\\AliceBundleExtension\\Tests\\": "tests"
}
}
}