Skip to content
This repository has been archived by the owner on Nov 29, 2018. It is now read-only.

Commit

Permalink
feature(composer): dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
hypeJunction committed Jul 28, 2015
1 parent c4a4a3c commit c635e28
Show file tree
Hide file tree
Showing 87 changed files with 21 additions and 3,548 deletions.
4 changes: 0 additions & 4 deletions .bowerrc

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ robots.txt
/nbproject/
/.sass-cache/
composer.lock
/vendors/jquery/
/vendor/
Gemfile.lock
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

gem "sass", "3.2.19"
gem "compass", "0.12.6"
10 changes: 0 additions & 10 deletions bower.json

This file was deleted.

5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@
"installer-name": "elgg_tokeninput"
},
"config": {
"vendor-dir": "vendors",
"preferred-install": "dist"
"vendor-dir": "/vendor/"
},
"require": {
"php": ">=5.4",
"composer/installers": "1.0.*"
"composer/installers": "1.*"
}
}

19 changes: 12 additions & 7 deletions manifest.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8">
<name>Token Input</name>

<name>Tokenizing Autocomplete</name>
<id>elgg_tokeninput</id>
<author>Ismayil Khayredinov - hypeJunction ([email protected])</author>
<version>3.1.0</version>
<category>enhancement</category>

<description>Tokenizing autocomplete</description>
<category>forms</category>
<description>Tokenizing autocomplete for Elgg</description>
<website>http://hypejunction.com/</website>
<copyright>See COPYRIGHT.txt</copyright>
<version>3.2.0</version>

<author>Ismayil Khayredinov ([email protected])</author>
<website>http://www.hypejunction.com/</website>
<copyright>(c) 2015 Ismayil Khayredinov</copyright>
<license>GNU General Public License version 2</license>

<requires>
<type>elgg_release</type>
<version>1.9</version>
</requires>

<requires>
<type>plugin</type>
<name>search</name>
</requires>

</plugin_manifest>
2 changes: 1 addition & 1 deletion start.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require_once __DIR__ . '/vendors/autoload.php';
require_once dirname(dirname(dirname(__DIR__))) . '/vendor/autoload.php';

define('ELGG_TOKENINPUT_PAGEHANDLER', 'tokeninput');

Expand Down
7 changes: 0 additions & 7 deletions vendors/autoload.php

This file was deleted.

Loading

0 comments on commit c635e28

Please sign in to comment.