generated from spiral-packages/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
88 lines (88 loc) · 2.57 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
83
84
85
86
87
88
{
"name": "spiral-packages/database-seeder",
"description": "The package provides the ability to seed your database with data using seed classes",
"keywords": [
"spiral-packages",
"spiral",
"seeder",
"database-seeder"
],
"homepage": "https://github.com/spiral-packages/database-seeder",
"license": "MIT",
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "[email protected]"
},
{
"name": "Pavel Buchnev (butschster)",
"email": "[email protected]"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "[email protected]"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "[email protected]"
},
{
"name": "Spiral Community",
"homepage": "https://github.com/spiral/framework/graphs/contributors"
}
],
"require": {
"php": "^8.1",
"butschster/entity-faker": "^2.0",
"fakerphp/faker": "^1.23",
"laminas/laminas-hydrator": "^4.3",
"spiral/attributes": "^2.0 || ^3.1.2",
"spiral/scaffolder": "^3.8",
"spiral/boot": "^3.8",
"spiral/console": "^3.8"
},
"require-dev": {
"spiral/framework": "^3.8",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.3",
"vimeo/psalm": "^5.15",
"spiral/cycle-bridge": "^2.5",
"spiral/testing": "^2.6",
"cycle/database": "^2.6"
},
"autoload": {
"psr-4": {
"Spiral\\DatabaseSeeder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\App\\": "tests/app/src",
"Tests\\Database\\": "tests/app/database",
"Tests\\": "tests/src"
}
},
"suggest": {
"spiral/testing": "To use the Spiral\\DatabaseSeeder\\TestCase class and helpers to test an app with DB",
"spiral/cycle-bridge": "For easy database and ORM configuration in a test application"
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": false
}
},
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\DatabaseSeeder\\Bootloader\\DatabaseSeederBootloader"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}