first commit

This commit is contained in:
2024-07-15 12:33:27 +02:00
commit ce50ae282b
22084 changed files with 2623791 additions and 0 deletions

33
vendor/mck89/peast/composer.json vendored Executable file
View File

@@ -0,0 +1,33 @@
{
"name": "mck89/peast",
"description": "Peast is PHP library that generates AST for JavaScript code",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Marco Marchiò",
"email": "marco.mm89@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Peast\\": "lib/Peast/"
}
},
"autoload-dev": {
"psr-4": {
"Peast\\test\\": "test/Peast/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.16.2-dev"
}
}
}