Skip to content

Commit 391e41c

Browse files
committed
🚧 Wip
1 parent 2816b28 commit 391e41c

File tree

2 files changed

+14
-73
lines changed

2 files changed

+14
-73
lines changed

.gitignore

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
1-
/.phpunit.cache
2-
/node_modules
3-
/public/build
4-
/public/hot
5-
/public/storage
6-
/storage/*.key
71
/vendor
8-
.env
9-
.env.backup
10-
.env.production
11-
.phpunit.result.cache
12-
Homestead.json
13-
Homestead.yaml
14-
auth.json
15-
npm-debug.log
16-
yarn-error.log
172
/.fleet
183
/.idea
194
/.vscode
5+
.env.example
6+
composer.lock
7+
phpunit.xml
8+
.phpunit.result.cache

composer.json

Lines changed: 10 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -13,79 +13,31 @@
1313
}
1414
],
1515
"require": {
16-
"php": "^8.2",
17-
"guzzlehttp/guzzle": "^7.5",
18-
"juststeveking/http-status-code": "^3.0.2",
19-
"juststeveking/launchpad": "dev-main",
20-
"laravel/framework": "^10.2",
21-
"laravel/sanctum": "^3.2.1",
22-
"laravel/tinker": "^2.8.1",
23-
"timacdonald/json-api": "v1.0.0-beta.4"
24-
},
25-
"require-dev": {
26-
"fakerphp/faker": "^1.21.0",
27-
"laravel/pint": "^1.6",
28-
"laravel/sail": "^1.21.1",
29-
"mockery/mockery": "^1.5.1",
30-
"nunomaduro/collision": "^6.4",
31-
"nunomaduro/larastan": "^2.5.1",
32-
"pestphp/pest": "^1.22.5",
33-
"pestphp/pest-plugin-laravel": "^1.4",
34-
"spatie/laravel-ignition": "^2.0",
3516
"symfony/console": "^6.3",
3617
"symfony/filesystem": "^6.3"
3718
},
19+
"require-dev": {
20+
"symfony/var-dumper": "^6.3",
21+
"phpstan/phpstan": "^1.10",
22+
"phpunit/phpunit": "^9.6"
23+
},
3824
"autoload": {
3925
"psr-4": {
40-
"App\\": "app/",
41-
"Core\\": ".core/",
42-
"Skeleton\\": "skeleton/",
43-
"Database\\Factories\\": "database/factories/",
44-
"Database\\Seeders\\": "database/seeders/"
26+
"Skeleton\\": "skeleton/"
4527
}
4628
},
4729
"autoload-dev": {
4830
"psr-4": {
49-
"Tests\\": "tests/"
31+
"Skeleton\\Tests\\": "skeleton/tests/"
5032
}
5133
},
52-
"scripts": {
53-
"post-autoload-dump": [
54-
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
55-
"@php artisan package:discover --ansi"
56-
],
57-
"post-update-cmd": [
58-
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
59-
],
60-
"post-root-package-install": [
61-
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
62-
],
63-
"post-create-project-cmd": [
64-
"@php artisan key:generate --ansi"
65-
],
66-
"pint": [
67-
"./vendor/bin/pint"
68-
],
69-
"stan": [
70-
"./vendor/bin/phpstan analyse --memory-limit=3g"
71-
],
72-
"test": [
73-
"@php artisan test"
74-
]
75-
},
7634
"extra": {
77-
"laravel": {
78-
"dont-discover": []
35+
"branch-alias": {
36+
"dev-master": "1.x-dev"
7937
}
8038
},
8139
"config": {
82-
"optimize-autoloader": true,
83-
"preferred-install": "dist",
84-
"sort-packages": true,
85-
"allow-plugins": {
86-
"pestphp/pest-plugin": true,
87-
"php-http/discovery": true
88-
}
40+
"sort-packages": true
8941
},
9042
"minimum-stability": "dev",
9143
"prefer-stable": true

0 commit comments

Comments
 (0)