forked from nelmio/alice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.61 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
{
"name": "nelmio/alice",
"description": "Expressive fixtures generator",
"keywords": ["fixture", "data", "test", "faker"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jordi Boggiano",
"email": "[email protected]"
},
{
"name": "Tim Shelburne",
"email": "[email protected]"
},
{
"name": "Théo FIDRY",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"fzaninotto/faker": "^1.0",
"myclabs/deep-copy": "^1.5.2",
"symfony/property-access": "^2.7.11||^3.0",
"symfony/yaml": "^2.0||^3.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.0.0",
"fzaninotto/faker": "^1.4",
"php-mock/php-mock": "^1.0",
"phpspec/prophecy": "^1.6",
"phpunit/phpunit": "^5.5",
"symfony/phpunit-bridge": "^3.1"
},
"scripts": {
"post-install-cmd": ["@composer bin all install --ansi"]
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Nelmio\\Alice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nelmio\\Alice\\": [
"fixtures",
"profiling",
"tests"
]
}
},
"extra": {
"bamarni-bin": {
"bin-links": false
},
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true
}
}