mirror of
https://github.com/klaussilveira/gitlist.git
synced 2026-01-17 21:12:41 +01:00
40 lines
978 B
JSON
40 lines
978 B
JSON
{
|
|
"name": "klaussilveira/gitlist",
|
|
"description": "An elegant git repository viewer",
|
|
"license": "BSD-2-Clause",
|
|
"require": {
|
|
"php": ">=5.3",
|
|
"klaussilveira/gitter": "^1.0",
|
|
"silex/silex": "^1.3",
|
|
"symfony/filesystem": "^2.8",
|
|
"symfony/http-kernel": "^2.8",
|
|
"symfony/process": "^2.8",
|
|
"symfony/twig-bridge": "^2.8",
|
|
"twig/twig": "^1.35"
|
|
},
|
|
"require-dev": {
|
|
"symfony/browser-kit": "^2.8",
|
|
"symfony/css-selector": "^2.8",
|
|
"phpunit/phpunit": "^9.5",
|
|
"rector/rector": "0.12.x-dev"
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"@unit",
|
|
"@lint"
|
|
],
|
|
"lint": [
|
|
"find src -name '*.php' -print0 | xargs -0 -n1 -P8 php -l"
|
|
],
|
|
"unit": [
|
|
"vendor/bin/phpunit"
|
|
]
|
|
},
|
|
"minimum-stability": "dev",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"GitList\\": "src/"
|
|
}
|
|
}
|
|
}
|