Bonjour à tous,
J'aimerais savoir s'il est possible d'utiliser x-editable avec Symfony 3 ?
Car en suivant la doc : https://github.com/ibrows/IbrowsXeditableBundle, au moment de mettre à jours mon composer.json,
j'ai l'erreur suivante :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
Problem 1
    - ibrows/xeditable-bundle 1.1.6 requires symfony/symfony ~2.1 -> no matching package found.
    - ibrows/xeditable-bundle 1.1.5 requires symfony/symfony ~2.1 -> no matching package found.
    - ibrows/xeditable-bundle 1.1.4 requires symfony/symfony ~2.1 -> no matching package found.
    - ibrows/xeditable-bundle 1.1.3 requires symfony/symfony ~2.1 -> no matching package found.
    - ibrows/xeditable-bundle 1.1.2 requires symfony/symfony ~2.1 -> no matching package found.
    - ibrows/xeditable-bundle 1.1.1 requires symfony/symfony ~2.1 -> no matching package found.
    - ibrows/xeditable-bundle 1.1.0 requires symfony/symfony ~2.1 -> no matching package found.
    - ibrows/xeditable-bundle 1.0.0 requires symfony/symfony ~2.1 -> no matching package found.
    - Installation request for ibrows/xeditable-bundle ~1.0 -> satisfiable by ibrows/xeditable-bundle[1.0.0, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.1.6].
 
Potential causes:
 - A typo in the package name
 - The package is not available in a stable-enough version according to your minimum-stability setting
   see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.
 
Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
composer.json
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
"require": {
        "php": ">=5.5.9",
        "symfony/symfony": "3.0.*",
        "doctrine/orm": "^2.5",
        "doctrine/doctrine-bundle": "^1.6",
        "doctrine/doctrine-cache-bundle": "^1.2",
        "symfony/swiftmailer-bundle": "^2.3",
        "symfony/monolog-bundle": "^2.8",
        "sensio/distribution-bundle": "^5.0",
        "sensio/framework-extra-bundle": "^3.0.2",
        "incenteev/composer-parameter-handler": "^2.0",
        "friendsofsymfony/user-bundle": "~2.0@dev",
        "symfony/assetic-bundle": "^2.7",
        "ibrows/xeditable-bundle": "~1.0"
    },
Merci d'avance.