Skip to content

Commit f407888

Browse files
author
Chris Boulton
committed
Merge pull request #1 from rayward/master
Adding composer support.
2 parents a88b19d + e2c6874 commit f407888

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "chrisboulton/php-resque-scheduler",
3+
"type": "library",
4+
"description": "php-resque-scheduler is a PHP port of resque-scheduler, which adds support for scheduling items in the future to Resque.",
5+
"authors": [
6+
{
7+
"name": "Chris Boulton",
8+
"email": "@chrisboulton"
9+
}
10+
],
11+
"autoload": {
12+
"psr-0": {
13+
"ResqueScheduler": "lib/"
14+
}
15+
},
16+
"repositories": [
17+
{ "type": "git", "url": "https://github.com/chrisboulton/php-resque" }
18+
],
19+
"require": {
20+
"chrisboulton/php-resque": "dev-master"
21+
},
22+
"minimum-stability": "dev"
23+
}

0 commit comments

Comments
 (0)