{
"name": "mezon/model",
"description": "Entity model",
"license": "MIT",
"authors": [
{
"name": "Dodonov Alexey",
"email": "alexey@dodonov.pro",
"homepage": "http://gdzone.ru",
"role": "Founder"
}
],
"require-dev": {
"phpunit/phpunit": "8.5",
"vimeo/psalm": "^4.2",
"infection/infection": "^0.21.5"
},
"require": {
"php": ">=7.2.0",
"mezon/functional": "1.1.*",
"mezon/service-model": "1.2.*",
"mezon/fields-set": "1.0.*"
},
"support": {
"email": "alexey@dodonov.pro",
"issues": "https://github.com/alexdodonov/model/issues",
"source": "https://github.com/alexdodonov/model"
},
"minimum-stability": "dev",
"homepage": "https://github.com/alexdodonov/model",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mezon\\": "./Mezon/"
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit --testsuit all --order-by=random",
"debug": "php ./vendor/phpunit/phpunit/phpunit --testsuit all --order-by=random --random-order-seed 1645510056",
"psalm": "php ./vendor/vimeo/psalm/psalm --show-info=true --no-cache",
"psalm-self": "php ./vendor/vimeo/psalm/psalm --config=psalm-self.xml --show-info=true --no-cache",
"infection": "php ./vendor/infection/infection/bin/infection --threads=4 --min-msi=100"
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"infection/extension-installer": true
}
}
}
|