tipo: modificación del cpanel y gitignore de la carpeta vendor

This commit is contained in:
2026-07-07 11:35:09 -06:00
parent a0c91dc567
commit 676ef0d506
8510 changed files with 1132803 additions and 4 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"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": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.3"
},
"autoload": {
"psr-4": {
"Spatie\\Macroable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Macroable\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}