-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
101 lines (101 loc) · 3.12 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "arkecosystem/foundation",
"description": "User-Interface Scaffolding for Laravel. Powered by Tailwind CSS.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ItsANameToo",
"email": "itsanametoo@protonmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"calebporzio/sushi": "^2.4",
"danharrin/livewire-rate-limiting": "^1.1",
"driftingly/rector-laravel": "^0.21",
"elgigi/commonmark-emoji": "^2.0",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.19",
"google/recaptcha": "^1.3",
"graham-campbell/analyzer": "4.2.x-dev",
"guzzlehttp/guzzle": "^7.7",
"jamesmills/laravel-timezone": "dev-master",
"jenssegers/agent": "^2.6",
"laravel/fortify": "^1.21",
"laravel/framework": "^11.0",
"laravel/telescope": "^5.0",
"league/commonmark": "^2.4",
"livewire/livewire": "^3.0",
"mockery/mockery": "^1.6",
"nunomaduro/larastan": "^2.9",
"pestphp/pest": "^3.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"pragmarx/google2fa-laravel": "^2.2",
"rector/rector": "^0.19",
"ruafozy/mersenne-twister": "^1.0",
"spatie/laravel-flash": "^1.10",
"spatie/laravel-honeypot": "^4.5",
"spatie/laravel-medialibrary": "^11.5",
"spatie/laravel-newsletter": "^5.1",
"spatie/laravel-personal-data-export": "^4.3",
"spatie/laravel-responsecache": "^7.5",
"spatie/laravel-schemaless-attributes": "^2.5",
"spatie/laravel-sluggable": "^3.6",
"spatie/pest-plugin-snapshots": "@dev",
"spatie/regex": "^3.1",
"spatie/yaml-front-matter": "^2.0"
},
"autoload": {
"psr-4": {
"ARKEcosystem\\Foundation\\": "src/"
},
"files": [
"src/UserInterface/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Database\\Factories\\": "database/factories/"
}
},
"extra": {
"laravel": {
"providers": [
"ARKEcosystem\\Foundation\\Providers\\FoundationServiceProvider"
]
}
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest"
],
"test:fast": [
"./vendor/bin/pest --parallel"
],
"test:coverage": [
"./vendor/bin/pest --coverage --min=100 --coverage-html=.coverage --coverage-clover=coverage.xml"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"treeware/plant": true,
"pestphp/pest-plugin": true
}
},
"require-dev": {
"orchestra/testbench": "^9.1",
"spatie/mailcoach-sdk-php": "^1.4"
}
}