generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
80 lines (80 loc) · 3.21 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
{
"name": "tarfin-labs/event-machine",
"description": "An event-driven state machine library for PHP, providing an expressive language to define and manage application states, enabling developers to create complex workflows with ease and maintainability.",
"keywords": [
"tarfin-labs",
"laravel",
"event-machine"
],
"homepage": "https://github.com/tarfin-labs/event-machine",
"license": "MIT",
"authors": [
{
"name": "Yunus Emre Deligöz",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2|^8.3|^8.4",
"illuminate/contracts": "^10.48.4|^11.0.8|^12.0",
"nikic/php-parser": "^5.4",
"spatie/laravel-data": "^4.13.0",
"spatie/laravel-package-tools": "^1.14.0"
},
"require-dev": {
"infection/infection": "^0.29.6",
"laravel/pint": "^1.0",
"larastan/larastan": "^3.1.0",
"orchestra/testbench": "^8.23.1|^9.0|^10.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.0"
},
"autoload": {
"psr-4": {
"Tarfinlabs\\EventMachine\\": "src",
"Tarfinlabs\\EventMachine\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Tarfinlabs\\EventMachine\\Tests\\": "tests"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"larastan": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist",
"pest": "vendor/bin/pest --colors=always --order-by=random --configuration=phpunit.xml.dist",
"test": "@pest",
"testp": "vendor/bin/pest --parallel --colors=always --order-by=random --configuration=phpunit.xml.dist",
"type": "vendor/bin/pest --type-coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"profile": "vendor/bin/pest --profile --colors=always --order-by=random --configuration=phpunit.xml.dist",
"coverage": "vendor/bin/pest --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"coveragep": "vendor/bin/pest --parallel --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"pint": "vendor/bin/pint --config=pint.json",
"lint": "@pint",
"lintc": "vendor/bin/pint && (git diff-index --quiet HEAD || (git add . && git commit -m 'chore: Fix styling'))",
"infection": "vendor/bin/infection --test-framework=pest --show-mutations --threads=max --min-msi=100 --min-covered-msi=100 --ansi"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"infection/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Tarfinlabs\\EventMachine\\MachineServiceProvider"
],
"aliases": {
"EventMachine": "Tarfinlabs\\EventMachine\\Facades\\EventMachine"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}