Skip to content

Commit

Permalink
Change username
Browse files Browse the repository at this point in the history
  • Loading branch information
cdruc committed Mar 26, 2021
1 parent 56bd8be commit be668a0
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: cdruc
github: druc
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/cdruc/laravel-langscanner/discussions/new?category=q-a
url: https://github.com/druc/laravel-langscanner/discussions/new?category=q-a
about: Ask the community for help
- name: Request a feature
url: https://github.com/cdruc/laravel-langscanner/discussions/new?category=ideas
url: https://github.com/druc/laravel-langscanner/discussions/new?category=ideas
about: Share ideas for new features
- name: Report a bug
url: https://github.com/cdruc/laravel-langscanner/issues/new
url: https://github.com/druc/laravel-langscanner/issues/new
about: Report a reproducable bug
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) cdruc <druc@pinsmile.com>
Copyright (c) druc <druc@pinsmile.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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# laravel-langscanner

[![Latest Version on Packagist](https://img.shields.io/packagist/v/cdruc/laravel-langscanner.svg?style=flat-square)](https://packagist.org/packages/cdruc/laravel-langscanner)
[![Total Downloads](https://img.shields.io/packagist/dt/cdruc/laravel-langscanner.svg?style=flat-square)](https://packagist.org/packages/cdruc/laravel-langscanner)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/druc/laravel-langscanner.svg?style=flat-square)](https://packagist.org/packages/druc/laravel-langscanner)
[![Total Downloads](https://img.shields.io/packagist/dt/druc/laravel-langscanner.svg?style=flat-square)](https://packagist.org/packages/druc/laravel-langscanner)

## Usage

Expand All @@ -16,7 +16,7 @@ php artisan langscanner
You can install the package via composer:

```bash
composer require cdruc/laravel-langscanner
composer require druc/laravel-langscanner
```

## Credits
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": "cdruc/laravel-langscanner",
"name": "druc/laravel-langscanner",
"description": "Scan missing language translations.",
"keywords": [
"cdruc",
"druc",
"laravel-langscanner"
],
"homepage": "https://github.com/cdruc/laravel-langscanner",
"homepage": "https://github.com/druc/laravel-langscanner",
"license": "MIT",
"authors": [
{
Expand All @@ -29,12 +29,12 @@
},
"autoload": {
"psr-4": {
"Cdruc\\Langscanner\\": "src"
"Druc\\Langscanner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cdruc\\Langscanner\\Tests\\": "tests"
"Druc\\Langscanner\\Tests\\": "tests"
}
},
"scripts": {
Expand All @@ -47,7 +47,7 @@
"extra": {
"laravel": {
"providers": [
"Cdruc\\Langscanner\\LangscannerServiceProvider"
"Druc\\Langscanner\\LangscannerServiceProvider"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
verbose="true"
>
<testsuites>
<testsuite name="Cdruc Test Suite">
<testsuite name="Druc Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/LangscannerCommand.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Cdruc\Langscanner\Commands;
namespace Druc\Langscanner\Commands;

use Cdruc\Langscanner\Langscanner;
use Druc\Langscanner\Langscanner;
use Illuminate\Console\Command;

class LangscannerCommand extends Command
Expand Down
2 changes: 1 addition & 1 deletion src/Langscanner.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Cdruc\Langscanner;
namespace Druc\Langscanner;

use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Arr;
Expand Down
4 changes: 2 additions & 2 deletions src/LangscannerServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Cdruc\Langscanner;
namespace Druc\Langscanner;

use Cdruc\Langscanner\Commands\LangscannerCommand;
use Druc\Langscanner\Commands\LangscannerCommand;
use Illuminate\Filesystem\Filesystem;
use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;
Expand Down
2 changes: 1 addition & 1 deletion src/TranslationsScanner.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Cdruc\Langscanner;
namespace Druc\Langscanner;

use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Str;
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Cdruc\Langscanner\Tests;
namespace Druc\Langscanner\Tests;

use Cdruc\Langscanner\LangscannerServiceProvider;
use Druc\Langscanner\LangscannerServiceProvider;
use Orchestra\Testbench\TestCase as Orchestra;

class TestCase extends Orchestra
Expand Down
4 changes: 2 additions & 2 deletions tests/TranslationsScannerTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Cdruc\Langscanner\Tests;
namespace Druc\Langscanner\Tests;

use Cdruc\Langscanner\TranslationsScanner;
use Druc\Langscanner\TranslationsScanner;

class TranslationsScannerTest extends TestCase
{
Expand Down

0 comments on commit be668a0

Please sign in to comment.