Skip to content

Commit

Permalink
fix: update username
Browse files Browse the repository at this point in the history
  • Loading branch information
emilhorlyck committed Oct 6, 2023
1 parent 03f0fbc commit b7e5af8
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: eHorlyck
github: emilhorlyck
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) eHorlyck <emilha@gmail.com>
Copyright (c) emilhorlyck <emilha@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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Opinionated fast-tracking of laravel development

[![Latest Version on Packagist](https://img.shields.io/packagist/v/ehorlyck/laravel-pareto.svg?style=flat-square)](https://packagist.org/packages/ehorlyck/laravel-pareto)
[![Tests](https://img.shields.io/github/actions/workflow/status/ehorlyck/laravel-pareto/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/ehorlyck/laravel-pareto/actions/workflows/run-tests.yml)
[![Total Downloads](https://img.shields.io/packagist/dt/ehorlyck/laravel-pareto.svg?style=flat-square)](https://packagist.org/packages/ehorlyck/laravel-pareto)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/emilhorlyck/laravel-pareto.svg?style=flat-square)](https://packagist.org/packages/emilhorlyck/laravel-pareto)
[![Tests](https://img.shields.io/github/actions/workflow/status/emilhorlyck/laravel-pareto/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/emilhorlyck/laravel-pareto/actions/workflows/run-tests.yml)
[![Total Downloads](https://img.shields.io/packagist/dt/emilhorlyck/laravel-pareto.svg?style=flat-square)](https://packagist.org/packages/emilhorlyck/laravel-pareto)



Expand All @@ -11,7 +11,7 @@
You can install the package via composer:

```bash
composer require ehorlyck/laravel-pareto
composer require emilhorlyck/laravel-pareto
```

## Usage
Expand Down Expand Up @@ -40,7 +40,7 @@ Please review [our security policy](../../security/policy) on how to report secu

## Credits

- [Emil Hørlyck](https://github.com/eHorlyck)
- [Emil Hørlyck](https://github.com/emilHorlyck)
- [All Contributors](../../contributors)

## License
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "ehorlyck/laravel-pareto",
"name": "emilhorlyck/laravel-pareto",
"description": "Opinionated fast-tracking of laravel development",
"keywords": [
"eHorlyck",
"emilHorlyck",
"laravel-pareto"
],
"homepage": "https://github.com/ehorlyck/laravel-pareto",
"homepage": "https://github.com/emilhorlyck/laravel-pareto",
"license": "MIT",
"authors": [
{
Expand All @@ -24,12 +24,12 @@
},
"autoload": {
"psr-4": {
"EHorlyck\\LaravelPareto\\": "src"
"EmilHorlyck\\LaravelPareto\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EHorlyck\\LaravelPareto\\Tests\\": "tests"
"EmilHorlyck\\LaravelPareto\\Tests\\": "tests"
}
},
"scripts": {
Expand All @@ -46,4 +46,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
17 changes: 17 additions & 0 deletions src/Commands/TestCommand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace EmilHorlyck\LaravelPareto;

use Illuminate\Console\Command;

class TestCommand extends Command
{
public $signature = 'xpareto:test';

public $description = 'Test if command works';

public function handle(): int
{
this->info('Test command');
}
}
7 changes: 7 additions & 0 deletions src/LaravelPareto.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

namespace EmilHorlyck\LaravelPareto;

class LaravelPareto
{
}
7 changes: 0 additions & 7 deletions src/LaravelParetoClass.php

This file was deleted.

0 comments on commit b7e5af8

Please sign in to comment.