Skip to content

Commit ea4dfdc

Browse files
committed
cleanup & rework
1 parent 1f9325c commit ea4dfdc

36 files changed

+461
-718
lines changed

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
build
2-
composer.lock
3-
docs
4-
vendor
1+
/composer.lock
2+
/vendor/

.scrutinizer.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.styleci.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,3 @@
1-
**THIS DEMO IS CURRENTLY IN DEVELOPMENT, DO NOT USE.**
2-
3-
# Easily generate Open Graph tags
4-
5-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/open-graph.svg?style=flat-square)](https://packagist.org/packages/spatie/open-graph)
6-
[![Build Status](https://img.shields.io/travis/spatie/open-graph/master.svg?style=flat-square)](https://travis-ci.org/spatie/open-graph)
7-
[![SensioLabsInsight](https://img.shields.io/sensiolabs/i/xxxxxxxxx.svg?style=flat-square)](https://insight.sensiolabs.com/projects/xxxxxxxxx)
8-
[![Quality Score](https://img.shields.io/scrutinizer/g/spatie/open-graph.svg?style=flat-square)](https://scrutinizer-ci.com/g/spatie/open-graph)
9-
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/open-graph.svg?style=flat-square)](https://packagist.org/packages/spatie/open-graph)
10-
11-
12-
The [Open Graph protocol](http://ogp.me/) protocol provides a way to add rich social graphs to any webpage. It's used on websites like Facebook, Twitter, Google+ and LinkedIn.
13-
14-
This package provides a fluent builder for these Open Graph objects as specified in the [official RDF schema](http://ogp.me/ns/ogp.me.ttl).
15-
16-
## Support us
17-
18-
Learn how to create a package like this one, by watching our premium video course:
19-
20-
[![Laravel Package training](https://spatie.be/github/package-training.jpg)](https://laravelpackage.training)
21-
22-
We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).
23-
24-
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).
25-
26-
## Postcardware
27-
28-
You're free to use this package (it's [MIT-licensed](LICENSE.md)), 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.
29-
30-
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
31-
32-
The best postcards will get published on the open source page on our website.
33-
341
## Installation
352

363
You can install the package via composer:
@@ -104,34 +71,3 @@ $openGraphTags = OpenGraphBook::create('My Awesome Website', 'http://www.example
10471
### `OpenGraphVideoTvShow`
10572

10673
### `OpenGraphVideoOther`
107-
108-
## Changelog
109-
110-
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
111-
112-
## Testing
113-
114-
``` bash
115-
$ composer test
116-
```
117-
118-
## Contributing
119-
120-
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
121-
122-
## Security
123-
124-
If you discover any security related issues, please email freek@spatie.be instead of using the issue tracker.
125-
126-
## Credits
127-
128-
- [Alex Vanderbist](https://github.com/AlexVanderbist)
129-
- [All Contributors](../../contributors)
130-
131-
## About Spatie
132-
133-
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).
134-
135-
## License
136-
137-
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

composer.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
2-
"name": "spatie/open-graph",
2+
"name": "astrotomic/open-graph",
33
"description": "Easily generate Open Graph tags",
44
"keywords": [
5-
"spatie",
65
"open-graph"
76
],
8-
"homepage": "https://github.com/spatie/open-graph",
7+
"homepage": "https://github.com/astrotomic/open-graph",
98
"license": "MIT",
109
"authors": [
10+
{
11+
"name": "Tom Witkowski",
12+
"email": "gummibeer@astrotomic.info",
13+
"homepage": "https://astrotomic.info",
14+
"role": "Developer"
15+
},
1116
{
1217
"name": "Alex Vanderbist",
1318
"email": "alex.vanderbist@gmail.com",
@@ -16,20 +21,20 @@
1621
}
1722
],
1823
"require": {
19-
"php": "^7.1",
20-
"spatie/phpunit-snapshot-assertions": "^0.2.0"
24+
"php": "^7.4"
2125
},
2226
"require-dev": {
23-
"phpunit/phpunit": "^6.0"
27+
"phpunit/phpunit": "^9.0",
28+
"spatie/phpunit-snapshot-assertions": "^4.2"
2429
},
2530
"autoload": {
2631
"psr-4": {
27-
"Spatie\\OpenGraph\\": "src"
32+
"Astrotomic\\OpenGraph\\": "src"
2833
}
2934
},
3035
"autoload-dev": {
3136
"psr-4": {
32-
"Spatie\\OpenGraph\\Test\\": "tests"
37+
"Astrotomic\\OpenGraph\\Test\\": "tests"
3338
}
3439
},
3540
"scripts": {

config/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)