Skip to content
Extraits de code Groupes Projets
composer.json 2,54 ko
Newer Older
tsteur's avatar
tsteur a validé
{
    "name": "piwik/piwik",
    "type": "application",
    "description": "the leading free/libre analytics platform",
tsteur's avatar
tsteur a validé
    "keywords": ["piwik","web","analytics"],
    "homepage": "http://piwik.org",
    "license": "GPL-3.0+",
    "authors": [
        {
            "name": "The Piwik Team",
            "email": "hello@piwik.org",
            "homepage": "http://piwik.org/the-piwik-team/"
        }
    ],
    "support": {
        "forum": "http://forum.piwik.org/",
        "issues": "https://github.com/piwik/piwik/issues",
tsteur's avatar
tsteur a validé
        "wiki": "http://dev.piwik.org/",
        "source": "https://github.com/piwik/piwik"
    },
    "autoload": {
        "psr-4": {
            "Piwik\\Plugins\\": "plugins/",
            "Piwik\\": "core/"
        },
        "psr-0": {
            "Zend_": "libs/",
            "HTML_": "libs/",
            "PEAR_": "libs/",
            "Archive_": "libs/"
        }
    },
tsteur's avatar
tsteur a validé
    "require": {
        "php": ">=5.3.2",
    },
    "require-dev": {
            "type": "package",
            "package": {
                "name": "facebook/xhprof",
                "type": "library",
                "description": "XHProf: A Hierarchical Profiler for PHP",
                "keywords": ["profiling", "performance"],
                "homepage": "http://pecl.php.net/package/xhprof",
                "license": "Apache-2.0",
                "version": "master",
                "require": {
                    "php": ">=5.2.0"
                },
                "autoload": {
                    "files": [
                        "xhprof_lib/utils/xhprof_lib.php",
                        "xhprof_lib/utils/xhprof_runs.php"
                    ]
                },
                "source": {
                    "type": "git",
                    "url": "https://github.com/phacility/xhprof",
                    "reference": "master"
                }
            }
        "pre-update-cmd": [
            "misc/composer/clean-xhprof.sh"
        ],
        "pre-install-cmd": [
            "misc/composer/clean-xhprof.sh"
        ],
        "post-update-cmd": [
            "misc/composer/build-xhprof.sh"
        ],
        "post-install-cmd": [
            "misc/composer/build-xhprof.sh"
        ]
    }
Fabian Becker's avatar
Fabian Becker a validé
}