-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.42 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
{
"name": "riley19280/persistent-seeders",
"description": "Persist data in a centralized and elegant way",
"type": "library",
"require": {
"illuminate/conditionable": "^11",
"illuminate/macroable": "^11",
"illuminate/database": "^11"
},
"require-dev": {
"laravel/pint": "^1.0",
"spatie/invade": "^1.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7|^8",
"pestphp/pest": "^2.9",
"pestphp/pest-plugin-arch": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan": "^1.10",
"orchestra/testbench": "^9.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"PersistentSeeders\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PersistentSeeders\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=2G",
"test": "./vendor/bin/pest",
"style": "./vendor/bin/pint"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"PersistentSeeders\\PersistentSeedersServiceProvider"
]
}
}
}