| {
	"name": "sibyx/phpgpx",
	"type": "library",
	"version": "1.3.0",
	"description": "A simple PHP library for GPX import/export",
	"minimum-stability": "stable",
	"license": "MIT",
	"authors": [
		{
			"name": "Jakub Dubec",
			"email": "[email protected] ",
			"homepage": "https://jakubdubec.me"
		}
	],
	"require": {
		"php": ">=7.1",
		"lib-libxml": "*",
		"ext-simplexml": "*",
		"ext-dom": "*"
	},
	"require-dev": {
		"evert/phpdoc-md" : "~0.2.0",
		"phpunit/phpunit": "^9",
		"friendsofphp/php-cs-fixer": "^2.18"
	},
	"autoload": {
		"psr-4": { "phpGPX\\": "src/phpGPX/" }
	},
	"autoload-dev": {
		"psr-4": { "phpGPX\\Tests\\": "tests/" }
	}
}
 |