Skip to content
This repository was archived by the owner on Jul 6, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dist/
vendor/
.gh_token
*.min.*

51 changes: 51 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- nightly

#env:
# global:
# - DB=mysql
# matrix:
# - GLPIVER=9.1/bugfixes
# - GLPIVER=master

before_script:
- composer self-update
# - git clone --depth=1 https://github.com/glpi-project/glpi -b $GLPIVER ../glpi && cd ../glpi
# - composer install --no-dev
# - mysql -u root -e 'create database glpitest;'
# - php tools/cliinstall.php --db=glpi-test --user=travis --tests
# - mv ../{LNAME} plugins/{LNAME}
# - cd plugins/{LNAME}
- composer install -o


script:
- vendor/bin/robo --no-interaction code:cs
# - mysql -u root -e 'select version();'
# - ./vendor/bin/atoum -bf tests/bootstrap.php -d tests/units/


matrix:
# exclude:
# - php: 5.4
# env: GLPIVER=master
allow_failures:
- php: nightly

cache:
directories:
- $HOME/.composer/cache

#notifications:
# irc:
# channels:
# - "irc.freenode.org#channel"
# on_success: change
# on_failure: always
# use_notice: true
# skip_join: true
8 changes: 8 additions & 0 deletions .tx/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[main]
host = https://www.transifex.com

[glpi-project-plugin-simcard.en_gbpo]
file_filter = locales/<lang>.po
source_file = locales/simcard.pot
source_lang = en

35 changes: 26 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
Simcard management for GLPI
=================
===========================

Download here : https://github.com/pluginsGLPI/simcard/releases
* Created bt Walid Nouh for GLPi 0.83
* Updated by Anthony Piesset and Dethegeek for GLPi 0.84
* Updated by Thierry Bugier Pineau for GLPi 0.85 and 0.90

Installation
=================
Télécharger l'archive et décompresser la dans votre dossier glpi/plugins/
Puis sur http://votreadresseglpi.fr section configuration > Plugin

Plugin créé par Walid Nouh pour GLPI 0.83.
Plugin modifié par Anthony Piesset et Dethegeek pour GLPI 0.84.
Plugin modifié par Thierry Bugier Pineau pour GLPI 0.85 et GLPI 0.90.
Installation (en)
-----------------

* Download from: https://github.com/pluginsGLPI/simcard/releases
* Uncompress in your `glpi/plugins` directory
* Install, enable and configure from `http://yourglpiaddress.com` from Configuration > Plugins section.

Installation (fr)
-----------------

* Téléchargez depuis : https://github.com/pluginsGLPI/simcard/releases
* Décompressez dans votre dossier `glpi/plugins`
* Installez, activez et configurez sur `http://votreadresseglpi.fr` dans la section Configuration > Plugins

Contributing
------------

* Open a ticket for each bug/feature so it can be discussed
* Follow [development guidelines](http://glpi-developer-documentation.readthedocs.io/en/latest/plugins.html)
* Refer to [GitFlow](http://git-flow.readthedocs.io/) process for branching
* Work on a new branch on your own fork
* Open a PR that will be reviewed by a developer
13 changes: 13 additions & 0 deletions RoboFile.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php
/**
* This is project's console commands configuration for Robo task runner.
*
* @see http://robo.li/
*/

require_once 'vendor/autoload.php';

class RoboFile extends Glpi\Tools\RoboFile
{
//Own plugin's robo stuff
}
7 changes: 7 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"glpi-project/tools": "^0.1.0"
}
}
Loading