apnet/jquery

This package is abandoned and no longer maintained. No replacement package was suggested.

jQuery for AsseticImporter

Maintainers

Details

github.com/apnet/jquery

Source

Issues

Installs: 1 032

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

pkg:composer/apnet/jquery

2.2.4 2016-07-08 14:31 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:34:22 UTC


README

Installation

Add requirements to composer.json:

{
  "require" : {
    "apnet/jquery" : "~2.2"
  }
}

Configurations

Register ApnetAsseticImporterBundle bundle in the AppKernel.php file

// ...other bundles ...
$bundles[] = new Apnet\AsseticImporterBundle\ApnetAsseticImporterBundle();

Add jQuery importer to services.yml

services:
    apnet.assetic.importer.jquery:
        parent: assetic.importer_path
        arguments:
            - %kernel.root_dir%/../vendor/apnet/jquery/app/Resources/assets/dist
            - jquery
        tags:
            - { name: apnet.assetic.config_mapper }

Twig

To include jQuery into Twig template use imported_asset function:

<script type="text/javascript" src="{{ imported_asset('jquery/jquery.min.js') }}"></script>