-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.25 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
{
"name": "fruivita/corporativo",
"description": "Importador de Estrutura Corporativa em formato de arquivo XML para aplicações Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"fruivita",
"laravel",
"corporativo",
"xml",
"importador"
],
"authors": [
{
"name": "Fábio Cassiano",
"email": "fcno.dev@gmail.com",
"homepage": "https://github.com/fcno",
"role": "Developer"
}
],
"homepage": "https://github.com/fruivita/corporativo",
"require": {
"php": "^8.0",
"ext-xmlreader": "*",
"illuminate/collections": "^9.46",
"illuminate/database": "^9.46",
"illuminate/support": "^9.46"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.29",
"laravel/pint": "^1.3",
"nunomaduro/larastan": "^2.3",
"orchestra/testbench": "^7.19",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FruiVita\\Corporativo\\": "src/",
"FruiVita\\Corporativo\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"FruiVita\\Corporativo\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"Corporativo": "FruiVita\\Corporativo\\Facades\\Corporativo"
},
"providers": [
"FruiVita\\Corporativo\\CorporativoServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --ansi --memory-limit 1G --error-format=github --debug",
"coverage": "composer test -- --coverage",
"test": "vendor/bin/pest --colors=always --stop-on-failure"
}
}