Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: spatie/package-skeleton-laravel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: ci-on/skeleton-php
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 1 commit
  • 8 files changed
  • 1 contributor

Commits on Jun 14, 2019

  1. adjust company info

    chrisbbreuer committed Jun 14, 2019
    Copy the full SHA
    5ff3921 View commit details
Showing with 23 additions and 38 deletions.
  1. +1 −1 LICENSE.md
  2. +8 −23 README.md
  3. +8 −8 composer.json
  4. +1 −1 phpunit.xml.dist
  5. +1 −1 src/SkeletonClass.php
  6. +2 −2 src/SkeletonFacade.php
  7. +1 −1 src/SkeletonServiceProvider.php
  8. +1 −1 tests/ExampleTest.php
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) Spatie bvba <info@spatie.be>
Copyright (c) CiOn LLC <info@cion.agency>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
31 changes: 8 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Very short description of the package

[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/:package_name.svg?style=flat-square)](https://packagist.org/packages/spatie/:package_name)
[![Build Status](https://img.shields.io/travis/spatie/:package_name/master.svg?style=flat-square)](https://travis-ci.org/spatie/:package_name)
[![Quality Score](https://img.shields.io/scrutinizer/g/spatie/:package_name.svg?style=flat-square)](https://scrutinizer-ci.com/g/spatie/:package_name)
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/:package_name.svg?style=flat-square)](https://packagist.org/packages/spatie/:package_name)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/ci-on/:package_name.svg?style=flat-square)](https://packagist.org/packages/ci-on/:package_name)
[![Build Status](https://img.shields.io/travis/ci-on/:package_name/master.svg?style=flat-square)](https://travis-ci.org/ci-on/:package_name)
[![Quality Score](https://img.shields.io/scrutinizer/g/ci-on/:package_name.svg?style=flat-square)](https://scrutinizer-ci.com/g/ci-on/:package_name)
[![Total Downloads](https://img.shields.io/packagist/dt/ci-on/:package_name.svg?style=flat-square)](https://packagist.org/packages/ci-on/:package_name)

**Note:** Replace ```:author_name``` ```:author_username``` ```:author_email``` ```:package_name``` ```:package_description``` with their correct values in [README.md](README.md), [CHANGELOG.md](CHANGELOG.md), [CONTRIBUTING.md](CONTRIBUTING.md), [LICENSE.md](LICENSE.md) and [composer.json](composer.json) files, then delete this line.

@@ -14,14 +14,14 @@ This is where your description should go. Try and limit it to a paragraph or two
You can install the package via composer:

```bash
composer require spatie/:package_name
composer require cion/:package_name
```

## Usage

``` php
$skeleton = new Spatie\Skeleton();
echo $skeleton->echoPhrase('Hello, Spatie!');
$skeleton = new Cion\Skeleton();
echo $skeleton->echoPhrase('Hello, Cion!');
```

### Testing
@@ -40,28 +40,13 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

If you discover any security related issues, please email freek@spatie.be instead of using the issue tracker.

## Postcardware

You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.

Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.

We publish all received postcards [on our company website](https://spatie.be/en/opensource/postcards).
If you discover any security related issues, please email chris@cion.agency instead of using the issue tracker.

## Credits

- [:author_name](https://github.com/:author_username)
- [All Contributors](../../contributors)

## Support us

Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects [on our website](https://spatie.be/opensource).

Does your business depend on our contributions? Reach out and support us on [Patreon](https://www.patreon.com/spatie).
All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "spatie/:package_name",
"name": "cion/:package_name",
"description": ":package_description",
"keywords": [
"spatie",
"cion",
":package_name"
],
"homepage": "https://github.com/spatie/:package_name",
"homepage": "https://github.com/cion/:package_name",
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": ":author_email",
"homepage": "https://spatie.be",
"homepage": "https://cion.agency",
"role": "Developer"
}
],
@@ -24,12 +24,12 @@
},
"autoload": {
"psr-4": {
"Spatie\\Skeleton\\": "src"
"Cion\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Skeleton\\Tests\\": "tests"
"Cion\\Skeleton\\Tests\\": "tests"
}
},
"scripts": {
@@ -43,10 +43,10 @@
"extra": {
"laravel": {
"providers": [
"Spatie\\Skeleton\\SkeletonServiceProvider"
"Cion\\Skeleton\\SkeletonServiceProvider"
],
"aliases": {
"Skeleton": "Spatie\\Skeleton\\SkeletonFacade"
"Skeleton": "Cion\\Skeleton\\SkeletonFacade"
}
}
}
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Spatie Test Suite">
<testsuite name="Cion Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
2 changes: 1 addition & 1 deletion src/SkeletonClass.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Spatie\Skeleton;
namespace Cion\Skeleton;

class SkeletonClass
{
4 changes: 2 additions & 2 deletions src/SkeletonFacade.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Spatie\Skeleton;
namespace Cion\Skeleton;

use Illuminate\Support\Facades\Facade;

/**
* @see \Spatie\Skeleton\SkeletonClass
* @see \Cion\Skeleton\SkeletonClass
*/
class SkeletonFacade extends Facade
{
2 changes: 1 addition & 1 deletion src/SkeletonServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Spatie\Skeleton;
namespace Cion\Skeleton;

use Illuminate\Support\ServiceProvider;

2 changes: 1 addition & 1 deletion tests/ExampleTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Spatie\Skeleton\Tests;
namespace Cion\Skeleton\Tests;

use PHPUnit\Framework\TestCase;