-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
62 lines (62 loc) · 1.92 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
{
"name": "laravel-workflow/waterline",
"description": "An elegant UI for monitoring Laravel Workflows.",
"license": "MIT",
"authors": [
{
"name": "Richard McDaniel",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"illuminate/support": "^9.0|^10.0|^11.0",
"laravel-workflow/laravel-workflow": "^1.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"jenssegers/mongodb": "^3.9",
"mockery/mockery": "^1.4.4",
"mongodb/mongodb": "1.11",
"orchestra/testbench": "^7.29",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"Waterline\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Waterline\\Tests\\": "tests/"
}
},
"scripts": {
"test": "composer test-mongo && composer test-mssql && composer test-mysql && composer test-pgsql && composer test-sqlite",
"test-mongo": "vendor/bin/phpunit --testdox --configuration=phpunit-mongo.xml",
"test-mssql": "vendor/bin/phpunit --testdox --configuration=phpunit-mssql.xml",
"test-mysql": "vendor/bin/phpunit --testdox --configuration=phpunit-mysql.xml",
"test-pgsql": "vendor/bin/phpunit --testdox --configuration=phpunit-pgsql.xml",
"test-sqlite": "vendor/bin/phpunit --testdox --configuration=phpunit-sqlite.xml"
},
"extra": {
"laravel": {
"providers": [
"Waterline\\WaterlineServiceProvider"
],
"aliases": {
"Waterline": "Waterline\\Waterline"
}
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}