├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── composer.json ├── composer.lock ├── docs ├── CNAME ├── README.md └── index.html ├── phpunit.xml ├── src ├── Exceptions │ └── FetchException.php ├── Facades │ └── OpenGraphFacade.php ├── OpenGraph.php └── Providers │ └── OpenGraphProvider.php └── tests ├── OpenGraphTest.php └── __mocks__ └── angular-headers.html /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/_config.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | opengraph.shashi.dev -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/docs/index.html -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exceptions/FetchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/src/Exceptions/FetchException.php -------------------------------------------------------------------------------- /src/Facades/OpenGraphFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/src/Facades/OpenGraphFacade.php -------------------------------------------------------------------------------- /src/OpenGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/src/OpenGraph.php -------------------------------------------------------------------------------- /src/Providers/OpenGraphProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/src/Providers/OpenGraphProvider.php -------------------------------------------------------------------------------- /tests/OpenGraphTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/tests/OpenGraphTest.php -------------------------------------------------------------------------------- /tests/__mocks__/angular-headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shweshi/OpenGraph/HEAD/tests/__mocks__/angular-headers.html --------------------------------------------------------------------------------