Skip to content

Commit

Permalink
configure the package
Browse files Browse the repository at this point in the history
  • Loading branch information
mgamal92 committed Feb 17, 2024
1 parent 9e51393 commit 270b1d0
Show file tree
Hide file tree
Showing 22 changed files with 67 additions and 479 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: :vendor_name
github: Mohamed Gamal
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Ask a question
url: https://github.com/:vendor_name/:package_name/discussions/new?category=q-a
url: https://github.com/Mohamed Gamal/laravel-inbox/discussions/new?category=q-a
about: Ask the community for help
- name: Request a feature
url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas
url: https://github.com/Mohamed Gamal/laravel-inbox/discussions/new?category=ideas
about: Share ideas for new features
- name: Report a security issue
url: https://github.com/:vendor_name/:package_name/security/policy
url: https://github.com/Mohamed Gamal/laravel-inbox/security/policy
about: Learn how to notify us for sensitive bugs
28 changes: 0 additions & 28 deletions .github/workflows/phpstan.yml

This file was deleted.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Changelog

All notable changes to `:package_name` will be documented in this file.
All notable changes to `laravel-inbox` will be documented in this file.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) :vendor_name <author@domain.com>
Copyright (c) Mohamed Gamal <mg.dev1992@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
32 changes: 14 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": ":vendor_slug/:package_slug",
"description": ":package_description",
"name": "mgamal/laravel-inbox",
"description": "This is my package laravel-inbox",
"keywords": [
":vendor_name",
"Mohamed Gamal",
"laravel",
":package_slug"
"laravel-inbox"
],
"homepage": "https://github.com/:vendor_slug/:package_slug",
"homepage": "https://github.com/mgamal/laravel-inbox",
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": "author@domain.com",
"name": "Mohamed Gamal",
"email": "mg.dev1992@gmail.com",
"role": "Developer"
}
],
Expand All @@ -23,31 +23,27 @@
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.8",
"larastan/larastan": "^2.0.1",
"orchestra/testbench": "^8.8",
"pestphp/pest": "^2.20",
"pestphp/pest-plugin-arch": "^2.5",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"psr-4": {
"VendorName\\Skeleton\\": "src/",
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories/"
"MG\\Inbox\\": "src/",
"MG\\Inbox\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"VendorName\\Skeleton\\Tests\\": "tests/",
"MG\\Inbox\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/"
}
},
"scripts": {
"post-autoload-dump": "@composer run prepare",
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"clear": "@php vendor/bin/testbench package:purge-laravel-inbox --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": [
"@composer run prepare",
Expand All @@ -73,13 +69,13 @@
"extra": {
"laravel": {
"providers": [
"VendorName\\Skeleton\\SkeletonServiceProvider"
"MG\\Inbox\\InboxServiceProvider"
],
"aliases": {
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton"
"Inbox": "MG\\Inbox\\Facades\\Inbox"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
6 changes: 6 additions & 0 deletions config/inbox.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

// config for MG/Inbox
return [

];
6 changes: 0 additions & 6 deletions config/skeleton.php

This file was deleted.

Loading

0 comments on commit 270b1d0

Please sign in to comment.