- twig/twig - Twig, the flexible, fast, and secure template language for PHP - 279287
- symfony/symfony - The Symfony PHP framework - 230662
- doctrine/common - Common Library for Doctrine projects - 230352
- doctrine/dbal - Database Abstraction Layer - 217097
- monolog/monolog - Logging for PHP 5.3 - 197983
- doctrine/orm - Object-Relational-Mapper for PHP - 196816
- swiftmailer/swiftmailer - Swiftmailer, free feature-rich PHP mailer - 172086
- kriswallsmith/assetic - Asset Management for PHP - 165852
- [sensio/distribution-bundle](https://packagist.org/packages/sen
This file contains hidden or 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
# Provide easy access to QueryString data | |
class QueryString | |
constructor: (@queryString) -> | |
@queryString or= window.document.location.search?.substr 1 | |
@variables = @queryString.split '&' | |
@pairs = ([key, value] = pair.split '=' for pair in @variables) | |
get: (name) -> | |
for [key, value] in @pairs |