forked from nelmio/alice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (79 loc) · 2.05 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
78
79
80
81
82
{
"name": "nelmio/alice",
"description": "Expressive fixtures generator",
"keywords": ["fixture", "data", "test", "faker"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be"
},
{
"name": "Tim Shelburne",
"email": "shelburt02@gmail.com"
},
{
"name": "Théo FIDRY",
"email": "theo.fidry@gmail.com"
}
],
"require": {
"php": "^8.1",
"fakerphp/faker": "^1.10",
"myclabs/deep-copy": "^1.10",
"sebastian/comparator": "^3.0 || ^4.0",
"symfony/property-access": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"phpspec/prophecy": "^1.6",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.3",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0",
"symfony/var-dumper": "^5.4 || ^6.0"
},
"conflict": {
"symfony/framework-bundle": "<5.4.0"
},
"autoload": {
"files": [
"src/deep_clone.php"
],
"psr-4": {
"Nelmio\\Alice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nelmio\\Alice\\": [
"fixtures",
"profiling",
"tests"
]
}
},
"suggest": {
"theofidry/alice-data-fixtures": "Wrapper for Alice to provide a persistence layer."
},
"extra": {
"bamarni-bin": {
"bin-links": false
},
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"bin-dir": "bin",
"sort-packages": true
}
}