111 lines
2.7 KiB
JSON
111 lines
2.7 KiB
JSON
{
|
|
"name": "humanj/notionforms",
|
|
"description": "A beautiful form builder for Notion",
|
|
"keywords": [
|
|
"notion",
|
|
"form",
|
|
"api",
|
|
"laravel",
|
|
"vue",
|
|
"Tailwind"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"repositories": [
|
|
{
|
|
"type": "vcs",
|
|
"url": "https://github.com/JhumanJ/laravel-notion-api.git"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.0",
|
|
"ext-json": "*",
|
|
"aws/aws-sdk-php": "^3.183",
|
|
"doctrine/dbal": "^3.4",
|
|
"fruitcake/laravel-cors": "^2.0",
|
|
"guzzlehttp/guzzle": "^7.0.1",
|
|
"jhumanj/laravel-model-stats": "^0.4.0",
|
|
"laravel/cashier": "^13.4",
|
|
"laravel/framework": "^9.0",
|
|
"laravel/horizon": "^5.7",
|
|
"laravel/socialite": "^5.2",
|
|
"laravel/tinker": "^2.6",
|
|
"laravel/ui": "^3.2",
|
|
"laravel/vapor-cli": "^1.38",
|
|
"laravel/vapor-core": "^2.21",
|
|
"laravel/vapor-ui": "^1.5",
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
|
"maatwebsite/excel": "^3.1",
|
|
"sentry/sentry-laravel": "^2.11.0",
|
|
"spatie/laravel-sitemap": "^6.0",
|
|
"spatie/laravel-sluggable": "^3.0",
|
|
"spatie/laravel-webhook-server": "^3.1.2",
|
|
"stevebauman/purify": "^4.0",
|
|
"tymon/jwt-auth": "^1.0.2",
|
|
"vinkla/hashids": "^10.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-ide-helper": "^2.12",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"laravel/dusk": "^6.8",
|
|
"mockery/mockery": "^1.4.2",
|
|
"nunomaduro/collision": "^6.1",
|
|
"pestphp/pest": "^1.15",
|
|
"pestphp/pest-plugin-faker": "^1.0",
|
|
"pestphp/pest-plugin-laravel": "^1.1",
|
|
"pestphp/pest-plugin-parallel": "^1.0",
|
|
"phpunit/phpunit": "^9.3.3",
|
|
"spatie/laravel-ignition": "^1.0",
|
|
"spatie/laravel-ray": "^1.17"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"platform": {
|
|
"ext-pcntl": "8.0",
|
|
"ext-posix": "8.0"
|
|
},
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
"laravel/dusk"
|
|
]
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi",
|
|
"@php artisan jwt:secret --force --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vapor-ui:publish --ansi"
|
|
]
|
|
}
|
|
}
|