Download the PHP package dainsys/human_resource without Composer

On this page you can find all versions of the php package dainsys/human_resource. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package human_resource

Dainsys Human Resource

A full stack package to add human_resource functionality to Laravel applications.

Features

  1. Events
    1. Email is sent when employee is created
    2. Email is sent when employee is terminated
    3. Email is sent when employee is reactivated
    4. Email is sent when employee is suspended
  2. Schedulled commands
    1. Daily at 3:00 am will check if a employee status needs to be changed based on wether or not it has an active suspension.
    2. Daily at 4:00 it will send an email with any active employee having birthday today.
    3. Montly at 4:00 on the 1st it will send emails with employees having birthdays this month and last month. Also on the 25th of each month it will send emails with employees having birthday next month.
    4. Daily report with the employees missing any information, such as supervisor, other data, afp, ars, etc.
  3. Dashboard
    1. Visit your /hr/admin/dashboard to view all stats, such as Current Count, Suspended, MTD Attrition, Issues, Monthly Head Count, Monthly attrition and splits by different categories. You can also filter all stats by site using the Filter floating window in the UI, located at the bottom of the page.
  4. Automatic Employee Status

    1. The application does not give you the option to update employee status by your self. However, it is updated based on different events happening with the employee:
      1. When an employee is created, the status will automatically change to Current.
      2. When a suspension is added for the employee, it will check if the current date is within the range provided. If so, it will change the status to Suspended. It will automatically revert to Current once all suspensions are dued.
      3. When an employee is terminated, it will automatically change its status to Inactive.
      4. If you reactivate the employee, it's status will revert to Current.

    Installation

    1. Require using composer: composer require dainsys/human_resource.
    2. Use the php artisan human_resource:install command, which will publish the assets and ask some configuration questions.
    3. optionally, you can add the following line to your composer file, under the scripts and post-update-cmd key, to publish the assets every time you update your composer dependencies: @php artisan vendor:publish --tag=human_resource:assets --force --ansi.
    4. Run the migrations: php artisan migrate.
    5. If you may want to customize the migrations before this step, first publish them: @php artisan vendor:publish --force --tag=human_resource:migrations.
    6. This app requires super admin users. You can register them with any of the following steps:
    7. In the register method of your AppServiceProvider add the following line: \Dainsys\HumanResource\HumanResource::registerSuperUsers(["[email protected]", "[email protected]"]);.
    8. In your .env file, add the following line with list of users who should have super_admin access: HUMAN_RESOURCE_SUPER_USERS= [email protected],[email protected]
    9. Optionally,:
    10. ou may want to publish and tweek the config file: @php artisan vendor:publish --force --tag=human_resource:config.
    11. This package has its own views, designed with livewire and CoreUi. However, if you may want to change them then you can publish them with @php artisan vendor:publish --force --tag=human_resource:views.
    12. Package views extend it's own layout app. However, you can change this by adding the key INVOICE_LAYOUT_VIEW to your .env file. Or, change it directly in the human_resource config file, under the layout key.
      Configure your application
  5. Visit route /hr/admin to view the dashboard and visit various app links to prepare your sistem.
  6. This package extends the dainsys/mailing package to report events and scheduled taks, so please complete the followint two steps:
    1. Visit the /mailing/admin/recipients end point and add the different recipients of you application.
    2. Visit the /mailing/admin/mailables to add all of your mailables and assign them with your recipients.

All versions of human_resource with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ^8.0|9.0
laravel/ui Version ^3.0|4.0
livewire/livewire Version ^2.10
rappasoft/laravel-livewire-tables Version ^2.8
cviebrock/eloquent-sluggable Version ^8.0
php-flasher/flasher-laravel Version ^1.7
maatwebsite/excel Version ^3.1|4.0
dainsys/mailing Version ^1.0
asantibanez/livewire-charts Version ^2.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package dainsys/human_resource contains the following files

Loading the files please wait ....