This commit is contained in:
icefox 2025-12-22 17:54:16 -03:00
commit a5ce423afe
No known key found for this signature in database
30 changed files with 1807 additions and 0 deletions

28
composer.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "icefox/aspect",
"description": "Aspect Oriented Programming for PHP",
"type": "library",
"require": {
"php": ">=8.0",
"psr/log": "^3.0"
},
"autoload": {
"psr-4": {
"IceFox\\Aspect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "fnzr",
"email": "felipe@imatos.dev"
}
],
"require-dev": {
"phpunit/phpunit": "^12.5"
}
}