Current File : //home/quantums/durdanatariq.com/wp-content/plugins/rocket-lazy-load/composer.json
{
	"name": "wp-media/rocket-lazy-load",
	"description": "Lazy Load images and iframes without jQuery",
	"keywords": [
		"wordpress",
		"lazyload"
	],
	"homepage": "https://github.com/wp-media/rocket-lazy-load",
	"license": "GPL-2.0+",
	"authors": [
		{
			"name": "WP Media",
			"email": "contact@wp-media.me",
			"homepage": "https://wp-media.me"
		}
	],
	"type": "wordpress-plugin",
	"config": {
		"sort-packages": true,
		"allow-plugins": {
			"dealerdirect/phpcodesniffer-composer-installer": true
		}
	},
	"support": {
		"issues": "https://github.com/wp-media/rocket-lazy-load/issues",
		"source": "https://github.com/wp-media/rocket-lazy-load"
	},
	"autoload": {
		"psr-4": {
			"RocketLazyLoadPlugin\\": "src/"
		}
	},
	"autoload-dev": {
        "psr-4": {
            "RocketLazyLoadPlugin\\Tests\\Unit\\": "tests/Unit",
            "RocketLazyLoadPlugin\\Tests\\Integration\\": "tests/Integration"
        }
    },
	"require": {
		"php": ">=7.3"
	},
	"require-dev": {
		"psr/container": "1.0.0",
		"brain/monkey": "^2.0",
		"coenjacobs/mozart": "^0.7.0",
		"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
		"phpcompatibility/phpcompatibility-wp": "^2.0",
		"phpunit/phpunit": "^7.5 || ^8 || ^9",
		"wp-coding-standards/wpcs": "^2.0.0",
		"wp-launchpad/core": "^0.2.6",
		"wp-launchpad/framework-options": "^0.1.3",
		"wp-media/phpunit": "^3.0",
		"wp-media/rocket-lazyload-common": "^3.0"
	},
	"extra": {
		"mozart": {
			"dep_namespace": "RocketLazyLoadPlugin\\Dependencies\\",
			"dep_directory": "/src/Dependencies/",
			"classmap_directory": "/classes/dependencies/",
			"classmap_prefix": "RLLP_",
			"packages": [
				"wp-media/rocket-lazyload-common",
				"league/container",
				"wp-launchpad/core",
				"wp-launchpad/framework-options"
			],
			"delete_vendor_directories": true
		}
	},
	"scripts": {
        "test-unit":"\"vendor/bin/phpunit\" --testsuite unit --colors=always",
		"test-integration": "\"vendor/bin/phpunit\" --testsuite integration --colors=always --configuration tests/Integration/phpunit.xml.dist",
		"post-install-cmd": [
			"\"vendor/bin/mozart\" compose",
			"composer dump-autoload"
		],
		"post-update-cmd": [
			"\"vendor/bin/mozart\" compose",
			"composer dump-autoload"
		]
	}
}