Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Initial cleanup
Browse files Browse the repository at this point in the history
Vorname Nachname committed Jun 26, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 0c4e65e commit 45bae31
Showing 9 changed files with 1,990 additions and 1,064 deletions.
4 changes: 0 additions & 4 deletions .dependabot/config.yml
Original file line number Diff line number Diff line change
@@ -3,10 +3,6 @@
version: 1

update_configs:
- default_assignees:
- "spawnia"
default_reviewers:
- "spawnia"
directory: "/"
package_manager: "php:composer"
update_schedule: "live"
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: spawnia
github: mll-lab
4 changes: 2 additions & 2 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -43,11 +43,11 @@ repository:
allow_rebase_merge: false
allow_squash_merge: false
default_branch: master
description: "GitHub repository template for a PHP package"
description: "PHP package to handle data from liquid handling robots"
has_downloads: true
has_issues: true
has_pages: false
has_projects: false
has_wiki: false
name: php-package-template
name: liquid-handling-robotics
private: false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@
/vendor
/.idea
/.php-cs-fixer.cache
/.phpunit.result.cache
44 changes: 7 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,19 @@
# php-package-template
# liquid-handling-robotics

[![Continuous Integration](https://github.com/spawnia/php-package-template/workflows/Continuous%20Integration/badge.svg)](https://github.com/spawnia/php-package-template/actions)
[![Code Coverage](https://codecov.io/gh/spawnia/php-package-template/branch/master/graph/badge.svg)](https://codecov.io/gh/spawnia/php-package-template)
[![Continuous Integration](https://github.com/mll-lab/liquid-handling-robotics/workflows/Continuous%20Integration/badge.svg)](https://github.com/mll-lab/liquid-handling-robotics/actions)
[![Code Coverage](https://codecov.io/gh/mll-lab/liquid-handling-robotics/branch/master/graph/badge.svg)](https://codecov.io/gh/mll-lab/liquid-handling-robotics)

[![Latest Stable Version](https://poser.pugx.org/spawnia/php-package-template/v/stable)](https://packagist.org/packages/spawnia/php-package-template)
[![Total Downloads](https://poser.pugx.org/spawnia/php-package-template/downloads)](https://packagist.org/packages/spawnia/php-package-template)
[![Latest Stable Version](https://poser.pugx.org/mll-lab/liquid-handling-robotics/v/stable)](https://packagist.org/packages/mll-lab/liquid-handling-robotics)
[![Total Downloads](https://poser.pugx.org/mll-lab/liquid-handling-robotics/downloads)](https://packagist.org/packages/mll-lab/liquid-handling-robotics)

GitHub repository template for a PHP package

# Remove this section after cloning

Search & Replace with your title:

```
GitHub repository template for a PHP package
```

Search & Replace with your package name:

```
php-package-template
PhpPackageTemplate
```

Search & Replace with your username/vendor (match case):

```
spawnia
Spawnia
```

Link the package at https://packagist.org

Enable code coverage at https://codecov.io

Thanks to @localheinz for providing the inspiration for this template: https://github.com/ergebnis/php-package-template

# Remove this section after cloning
PHP package to handle data from liquid handling robots

## Installation

Install through composer

```sh
composer require spawnia/php-package-template
composer require mll-lab/liquid-handling-robotics
```

## Usage
39 changes: 21 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
{
"name": "spawnia/php-package-template",
"type": "library",
"description": "GitHub repository template for a PHP package",
"homepage": "https://github.com/spawnia/php-package-template",
"name": "mll-lab/liquid-handling-robotics",
"description": "PHP package to handle data from liquid handling robots",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
"name": "Simon Bigelmayr",
"email": "[email protected]"
}
],
"homepage": "https://github.com/mll-lab/liquid-handling-robotics",
"support": {
"issues": "https://github.com/mll-lab/liquid-handling-robotics/issues",
"source": "https://github.com/mll-lab/liquid-handling-robotics"
},
"require": {
"php": "^7.4 || ^8",
"illuminate/support": "^7 || ^8",
"mll-lab/microplate": "^3.5",
"mll-lab/php-utils": "^1.2",
"thecodingmachine/safe": "^1"
},
"require-dev": {
@@ -28,28 +35,24 @@
"symfony/var-dumper": "^5",
"thecodingmachine/phpstan-safe-rule": "^1.1"
},
"config": {
"platform": {
"php": "7.4.24"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Spawnia\\PhpPackageTemplate\\": "src/"
"Mll\\LiquidHandlingRobotics\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spawnia\\PhpPackageTemplate\\Tests\\": "tests/"
"Mll\\LiquidHandlingRobotics\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"support": {
"issues": "https://github.com/spawnia/php-package-template/issues",
"source": "https://github.com/spawnia/php-package-template"
"config": {
"platform": {
"php": "7.4.24"
},
"preferred-install": "dist",
"sort-packages": true
}
}
2,918 changes: 1,958 additions & 960 deletions composer.lock

Large diffs are not rendered by default.

23 changes: 0 additions & 23 deletions src/Example.php

This file was deleted.

19 changes: 0 additions & 19 deletions tests/Unit/ExampleTest.php

This file was deleted.

0 comments on commit 45bae31

Please sign in to comment.