-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.02 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
{
"name": "wojciech.nawalaniec/mother-object-factory",
"description": "Library making creation of mother objects super easy.",
"type": "library",
"autoload": {
"psr-4": {
"MotherObjectFactory\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\MotherObjectFactory\\": "test/"
}
},
"authors": [
{
"name": "Wojciech Nawalaniec",
"email": "wnnawalaniec@gmail.com"
}
],
"require": {
"php": "^8.1",
"symfony/console": "^6.2",
"nette/php-generator": "^4.0",
"fakerphp/faker": "^1.22",
"mouf/classname-mapper": "^1.0",
"thecodingmachine/class-explorer": "^1.1",
"symfony/cache": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"infection/infection": "^0.27.0"
},
"bin": [
"bin/motherObjects"
],
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}