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

refresh project #36

Open
wants to merge 4 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
@@ -0,0 +1 @@
.idea
49 changes: 28 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
{
"name": "chrisboulton/php-resque-scheduler",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this is not intentional?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no, and i rewrited this completly in OOP, from the begginning

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't see how this PR makes this project yours.

Copy link
Author

@spiritdead spiritdead Apr 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#37

after talk with another collaborator, i decided make a rewrite of this, this project is very old

"type": "library",
"description": "php-resque-scheduler is a PHP port of resque-scheduler, which adds support for scheduling items in the future to Resque.",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"ResqueScheduler": "lib/"
}
},
"repositories": [
{ "type": "git", "url": "https://github.com/chrisboulton/php-resque" }
],
"require": {
"chrisboulton/php-resque": "dev-master"
}
"name": "spiritdead/php-resque-scheduler",
"type": "library",
"description": "php-resque-scheduler is a PHP port of resque-scheduler, which adds support for scheduling items in the future to Resque.",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "[email protected]"
},
{
"name": "Carlos Rodriguez",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"ResqueScheduler": "lib/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/spiritdead/php-resque"
}
],
"require": {
"spiritdead/php-resque": "dev-master"
}
}
Loading