You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
872 B

10 months ago
{
"name": "spatie/macroable",
"description": "A trait to dynamically add methods to a class",
"keywords": [
"spatie",
"macroable"
],
"homepage": "https://github.com/spatie/macroable",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"Spatie\\Macroable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Macroable\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}