-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.32 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "sysvale/cuids-generator",
"description": "Gerador de módulos",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/console": "^10.0|^11.0|^12.0",
"laravel-shift/blueprint": "^2.12",
"jasonmccreary/laravel-test-assertions": "^0.1.0",
"symfony/yaml": "^6.2|^7.0"
},
"autoload": {
"psr-4": {
"Sysvale\\CuidsGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sysvale\\CuidsGenerator\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Sysvale\\CuidsGenerator\\Providers\\CuidsGeneratorServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^8.22|^9.0",
"pestphp/pest": "^2.34|^3.0",
"pestphp/pest-plugin-drift": "^2.0|^3.0",
"squizlabs/php_codesniffer": "^4.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "phpcs .",
"fix": "phpcbf .",
"test": "pest",
"test:coverage": "pest --coverage-html build/coverage"
}
}