forked from code-distortion/adapt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.22 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
{
"name": "code-distortion/adapt",
"description": "A Laravel package that builds databases for your tests, improving their speed.",
"keywords": [
"laravel",
"phpunit",
"pest",
"dusk",
"paratest",
"parallel",
"tests",
"testing",
"unit-tests",
"integration-tests",
"feature-tests",
"browser-tests",
"database",
"migrations",
"seeders",
"transactions",
"DatabaseMigrations",
"DatabaseTransactions",
"RefreshDatabase"
],
"homepage": "https://github.com/code-distortion/adapt",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tim Chandler",
"email": "tim@code-distortion.net"
}
],
"require": {
"php": "7.0.* | 7.1.* | 7.2.* | 7.3.* | 7.4.* | 8.0.* | 8.1.* | 8.2.*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"code-distortion/fluent-dotenv": "^0.1.6",
"guzzlehttp/guzzle": "^6.3 | ^7.0"
},
"require-dev": {
"fakerphp/faker": "^1.0",
"orchestra/testbench": "^3.2 | ^4.0 | ^5.0 | ^6.0 | ^7.0 | ^8.0",
"phpstan/phpstan": "^0.7 | ^0.8 | ^0.9 | ^0.10 | ^0.11 | ^0.12 | ^1.0",
"phpunit/phpunit": "~4.8 | ^5.0 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"CodeDistortion\\Adapt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CodeDistortion\\Adapt\\Tests\\": "tests",
"CodeDistortion\\Adapt\\Tests\\Database\\Seeders\\": "tests/workspaces/current/database/seeds"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon --level=max",
"phpcs": "vendor/bin/phpcs"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": false,
"ocramius/package-versions": true
}
},
"extra": {
"laravel": {
"providers": [
"CodeDistortion\\Adapt\\AdaptLaravelServiceProvider"
]
}
}
}