59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|     "name": "gitonomy/gitlib",
 | |
|     "description": "Library for accessing git",
 | |
|     "license": "MIT",
 | |
|     "authors": [
 | |
|         {
 | |
|             "name": "Graham Campbell",
 | |
|             "email": "hello@gjcampbell.co.uk",
 | |
|             "homepage": "https://github.com/GrahamCampbell"
 | |
|         },
 | |
|         {
 | |
|             "name": "Julien Didier",
 | |
|             "email": "genzo.wm@gmail.com",
 | |
|             "homepage": "https://github.com/juliendidier"
 | |
|         },
 | |
|         {
 | |
|             "name": "Grégoire Pineau",
 | |
|             "email": "lyrixx@lyrixx.info",
 | |
|             "homepage": "https://github.com/lyrixx"
 | |
|         },
 | |
|         {
 | |
|             "name": "Alexandre Salomé",
 | |
|             "email": "alexandre.salome@gmail.com",
 | |
|             "homepage": "https://github.com/alexandresalome"
 | |
|         }
 | |
|     ],
 | |
|     "autoload": {
 | |
|         "psr-4": {
 | |
|             "Gitonomy\\Git\\": "src/Gitonomy/Git/"
 | |
|         }
 | |
|     },
 | |
|     "autoload-dev": {
 | |
|         "psr-4": {
 | |
|             "Gitonomy\\Git\\Tests\\": "tests/Gitonomy/Git/Tests/"
 | |
|         }
 | |
|     },
 | |
|     "require": {
 | |
|         "php": "^5.6 || ^7.0 || ^8.0",
 | |
|         "ext-pcre": "*",
 | |
|         "symfony/polyfill-mbstring": "^1.7",
 | |
|         "symfony/process": "^3.4 || ^4.4 || ^5.0 || ^6.0"
 | |
|     },
 | |
|     "require-dev": {
 | |
|         "ext-fileinfo": "*",
 | |
|         "phpspec/prophecy": "^1.10.2",
 | |
|         "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.20 || ^9.5.9",
 | |
|         "psr/log": "^1.0"
 | |
|     },
 | |
|     "suggest": {
 | |
|         "ext-fileinfo": "Required to determine the mimetype of a blob",
 | |
|         "psr/log": "Required to use loggers for reporting of execution"
 | |
|     },
 | |
|     "config": {
 | |
|         "preferred-install": "dist"
 | |
|     },
 | |
|     "minimum-stability": "dev",
 | |
|     "prefer-stable": true
 | |
| }
 | 
