Skip to content

Commit

Permalink
initial structure
Browse files Browse the repository at this point in the history
  • Loading branch information
gabbydgab committed Feb 21, 2020
0 parents commit 5426465
Show file tree
Hide file tree
Showing 9 changed files with 5,750 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/vendor

.idea
.DS_Store
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
661 changes: 661 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Personnel Management Package
A package for managing Employees

# License
Copyright (C) 2020 Coding Matters Software Development Services

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
57 changes: 57 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "codingmatters/personnel-management-package",
"type": "laravel-package",
"description": "A custom package, used only under Coding Matters platform, to manage Employees",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Gab Amba",
"email": "[email protected]",
"role": "Founder & Technologist"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": "^7.3",
"guzzlehttp/guzzle": "^6.5.2"
},
"require-dev": {
"laminas/laminas-coding-standard": "^1.0.0",
"malukenho/mcbumpface": "^1.1.1",
"orchestra/testbench": "^v4.6.0"
},
"autoload": {
"psr-4": {
"CodingMatters\\PersonnelManagement\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodingMatters\\PersonnelManagementTests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"CodingMatters\\PersonnelManagement\\Providers\\PersonnelManagementServiceProvider"
]
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --verbose --testdox --color=always"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit 5426465

Please sign in to comment.