This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
77 lines (77 loc) · 1.98 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": "blumilksoftware/meetup",
"type": "library",
"description": "Base for meetup applications.",
"keywords": [
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1.5",
"doctrine/dbal": "^3.4",
"fruitcake/laravel-cors": "^3.0.0",
"guzzlehttp/guzzle": "^7.4.5",
"kyslik/column-sortable": "^6.4.2",
"laravel/framework": "^9.23",
"laravel/sanctum": "^2.14 || ^3.0",
"laravel/socialite": "^5.5.3",
"laravel/telescope": "^4.9.1",
"laravel/tinker": "^2.7.2",
"spatie/laravel-permission": "^5.5.5"
},
"require-dev": {
"blumilksoftware/blt": "dev-main",
"blumilksoftware/codestyle": "1.8.0",
"fakerphp/faker": "^1.20",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^6.2",
"nunomaduro/larastan": "^2.1.12",
"orchestra/testbench": "^7.6",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-mockery": "^1.1",
"phpunit/phpunit": "^9.5.21",
"spatie/laravel-ignition": "^1.3.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/blumilksoftware/blt"
}
],
"autoload": {
"psr-4": {
"Blumilk\\Meetup\\Core\\": "src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff --config codestyle.php",
"csf": "./vendor/bin/php-cs-fixer fix --diff --config codestyle.php",
"behat": "./vendor/bin/behat",
"test": "phpunit",
"phpstan": [
"php -d memory_limit=600M vendor/bin/phpstan analyse -l 5 -c phpstan.neon"
],
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}