This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
forked from carhartl/jquery-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
composer.json file added for composer (dependency manager)
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "components/jquery-cookie", | ||
"description": "A simple, lightweight jQuery plugin for reading, writing and deleting cookies", | ||
"keywords": [ | ||
"cookie", | ||
"jQuery", | ||
"javascript", | ||
"js" | ||
], | ||
"license": "MIT", | ||
"type": "component", | ||
"homepage": "https://github.com/carhartl/jquery-cookie", | ||
"authors": [ | ||
{ | ||
"name": "Klaus Hartl", | ||
"homepage": "https://github.com/carhartl" | ||
} | ||
], | ||
"require": { | ||
"robloach/component-installer": "*", | ||
"components/jquery": ">=1.2,<1.11-dev" | ||
}, | ||
"extra": { | ||
"component": { | ||
"scripts": [ | ||
"jquery.cookie.js" | ||
] | ||
} | ||
} | ||
} |
3413d50
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the jquery version limited to <1.11? This should work even with jquery 2.x, and I can't install it with jquery 1.11.
3413d50
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, the jQuery branch should be chosen and not be forced. I will correct that promptly.
It's done, you might use it now with the jQuery 2.x branch. Thanks for your report.
3413d50
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for the quick fix!