-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.59 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.59 KB
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": "dbflowlabs/core",
"description": "Model-first workflow engine core for Laravel applications.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Baron Wang",
"email": "hello@dbflow.dev"
}
],
"homepage": "https://github.com/dbflow-labs/dbflow-core",
"support": {
"issues": "https://github.com/dbflow-labs/dbflow-core/issues",
"source": "https://github.com/dbflow-labs/dbflow-core"
},
"autoload": {
"psr-4": {
"DbflowLabs\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DbflowLabs\\Core\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"illuminate/auth": "^13.0",
"illuminate/console": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/database": "^13.0",
"illuminate/support": "^13.0",
"symfony/expression-language": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"orchestra/testbench": "^11.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5.50"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-clover build/coverage.xml",
"coverage:check": "php tests/Support/check-coverage.php build/coverage.xml",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=512M"
},
"extra": {
"laravel": {
"providers": [
"DbflowLabs\\Core\\Providers\\DBFlowServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [{
"name": "packagist",
"type": "composer",
"url": "https://repo.packagist.org"
}]
}