-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
115 lines (115 loc) · 3.42 KB
/
composer.json
File metadata and controls
115 lines (115 loc) · 3.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "relaticle/custom-fields",
"description": "User Defined Custom Fields for Laravel Filament",
"keywords": [
"manukminasyan",
"relaticle",
"laravel",
"custom-fields",
"filament",
"dynamic-fields",
"form-fields",
"eloquent",
"admin-panel",
"forms",
"multi-tenancy",
"conditional-fields",
"field-builder",
"form-builder",
"no-migration",
"csv-import",
"csv-export",
"encrypted-fields",
"validation",
"filamentphp",
"laravel-package"
],
"homepage": "https://github.com/relaticle/custom-fields",
"support": {
"issues": "https://github.com/relaticle/custom-fields/issues",
"source": "https://github.com/relaticle/custom-fields"
},
"license": "AGPL-3.0",
"authors": [
{
"name": "manukminasyan",
"email": "manuk.minasyan1@gmail.com",
"role": "Engineer"
}
],
"require": {
"php": "^8.3",
"filament/filament": "^5.0",
"kirschbaum-development/eloquent-power-joins": "^4.0",
"postare/blade-mdi": "^1.0",
"propaganistas/laravel-phone": "^6.0",
"spatie/laravel-data": "^4.0.0",
"spatie/laravel-package-tools": "^1.15.0"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^8.1",
"orchestra/testbench": "^10.0",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-arch": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"pestphp/pest-plugin-type-coverage": "^4.0",
"phpstan/phpstan-deprecation-rules": "*",
"phpstan/phpstan-phpunit": "^2.0",
"rector/rector": "*",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"psr-4": {
"Relaticle\\CustomFields\\": "src/",
"Relaticle\\CustomFields\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Relaticle\\CustomFields\\Tests\\": "tests/",
"Relaticle\\CustomFields\\Tests\\Database\\Factories\\": "tests/database/factories/"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"lint": "rector && pint --parallel",
"test:lint": "pint --test",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse",
"test:arch": "pest --filter=arch",
"test:type-coverage": "pest --type-coverage --min=100.0",
"test:pest": "pest --parallel",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:type-coverage",
"@test:pest"
],
"test-coverage": "vendor/bin/pest --coverage"
},
"bin": [
"bin/custom-fields-upgrade"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Relaticle\\CustomFields\\CustomFieldsServiceProvider"
],
"aliases": {
"CustomFields": "Relaticle\\CustomFields\\Facades\\CustomFields"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}