Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #2

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
composer.lock
/vendor
/.idea
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Change Log

You can see the changes made via the [commit log](https://github.com/themehybrid/hybrid-carbon/commits/master) for the latest release.

## [1.0.1] - 2023-02-20

### Changed

- Update copyright year
- Update copyright author
- Bump php version from 5.6 -> 7.4s
- Replace `justintadlock/hybrid-carbon` with `themehybrid/hybrid-carbon`

## [1.0.0] - 2018-09-14

### Added

- Everything's new! This is the first release.
2 changes: 1 addition & 1 deletion contributing.md → CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

The code for the this project is handled via its [GitHub Repository](https://github.com/justintadlock/hybrid-carbon). You can open tickets, create patches, and send pull requests there.
The code for the this project is handled via its [GitHub Repository](https://github.com/themehybrid/hybrid-carbon). You can open tickets, create patches, and send pull requests there.

## Pull requests

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions readme.md → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ All of the core script methods are based around core WP's image attachment featu

## Requirements

* PHP 5.6+ (preferably 7+)
* PHP 7.4+ (preferably 8+)
* [Composer](https://getcomposer.org/) for managing PHP dependencies.

## Documentation
Expand All @@ -35,7 +35,7 @@ cd path/to/wp-content/themes/<your-theme-name>
Then, use Composer to install the package.

```bash
composer require justintadlock/hybrid-carbon
composer require themehybrid/hybrid-carbon
```

Assuming you're not already including the Composer autoload file for your theme and are shipping this as part of your theme package, you'll want something like the following bit of code in your theme's `functions.php` to autoload this package (and any others).
Expand Down
7 changes: 0 additions & 7 deletions changelog.md

This file was deleted.

40 changes: 21 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
{
"name" : "justintadlock/hybrid-carbon",
"description" : "God-like post featured image script.",
"keywords" : [ "wordpress" ],
"homepage" : "https://github.com/justintadlock/hybrid-carbon",
"license" : "GPL-2.0-or-later",
"authors" : [
"name": "themehybrid/hybrid-carbon",
"description": "An awe-inspiring script for the post featured image script.",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress"
],
"authors": [
{
"name" : "Justin Tadlock",
"email" : "justintadlock@gmail.com",
"homepage" : "http://justintadlock.com",
"role" : "Developer"
"name": "Theme Hybrid",
"email": "themehybrid@gmail.com",
"homepage": "https://themehybrid.com",
"role": "Developer"
}
],
"support" : {
"issues" : "https://github.com/justintadlock/hybrid-carbon/issues",
"forum" : "https://themehybrid.com/board/topics"
"homepage": "https://github.com/themehybrid/hybrid-carbon",
"support": {
"issues": "https://github.com/themehybrid/hybrid-carbon/issues",
"forum": "https://themehybrid.com/board/topics"
},
"autoload" : {
"psr-4" : {
"Hybrid\\Carbon\\" : "src/"
}
"require": {
"php": ">=7.4"
},
"require" : {
"php" : ">=5.6"
"autoload": {
"psr-4": {
"Hybrid\\Carbon\\": "src/"
}
}
}
Loading