
* #9 - set up inertia and tailwind * #9 - fix * #9 - headless ui, heroicons and some webpack stuff * #9 - fix * #9 - fix * #9 - fix * #9 - eslint * #9 - github pr review * #9 - run linter manually * Update resources/js/Pages/Dashboard.vue Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * #9 - fix * Update .eslintrc.js Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
61 lines
1.7 KiB
JSON
61 lines
1.7 KiB
JSON
{
|
|
"name": "blumilksoftware/toby",
|
|
"type": "project",
|
|
"description": "HR software you love to hate",
|
|
"keywords": ["toby", "laravel", "hr"],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-pdo": "*",
|
|
"fruitcake/laravel-cors": "^2.0",
|
|
"guzzlehttp/guzzle": "^7.0.1",
|
|
"inertiajs/inertia-laravel": "^0.5.1",
|
|
"laravel/framework": "^8.75",
|
|
"laravel/telescope": "^4.6",
|
|
"laravel/tinker": "^2.5"
|
|
},
|
|
"require-dev": {
|
|
"blumilksoftware/codestyle": "^0.9.0",
|
|
"facade/ignition": "^2.5",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^5.10",
|
|
"phpunit/phpunit": "^9.5.10"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Toby\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"ecs": "./vendor/bin/ecs check --clear-cache",
|
|
"ecsf": "./vendor/bin/ecs check --clear-cache --fix",
|
|
"test": "@php artisan test",
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
"laravel/telescope"
|
|
]
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|