Set autoloader

This commit is contained in:
Daniil Gentili 2020-11-01 21:41:05 +01:00
parent 409c6c2f1f
commit 0d950a82a8
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
1 changed files with 7 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"type": "project",
"require": {
"nikic/php-parser": "^4.7",
"composer-plugin-api": "^1|^2"
"phabel/phabel-plugin": "*"
},
"require-dev": {
"phpunit/phpunit": "^7 | ^8 | ^9",
@ -18,6 +18,11 @@
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}],
"autoload": {
"psr-4": {
"Phabel\\": "src"
}
},
"scripts": {
"check": [
"@cs",
@ -27,4 +32,4 @@
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
}
}
}