-
- Downloads
chore: add required composer settings
Signed-off-by:
Bart Jaskulski <bjaskulski@protonmail.com>
parent
66fdde0d
No related branches found
No related tags found
This commit is part of merge request !36. Comments created here will be created in the context of that merge request.
... | @@ -18,11 +18,22 @@ | ... | @@ -18,11 +18,22 @@ |
"wimg/php-compatibility": "^8" | "wimg/php-compatibility": "^8" | ||
}, | }, | ||
"autoload": { | "autoload": { | ||
"psr-4": {"WPDesk\\PluginBuilder\\": "src/"}, | "psr-4": { | ||
"classmap": ["src/Plugin/WithoutNamespace"] | "WPDesk\\PluginBuilder\\": "src/" | ||
}, | |||
"classmap": [ | |||
"src/Plugin/WithoutNamespace" | |||
] | |||
}, | }, | ||
"autoload-dev": { | "autoload-dev": { | ||
}, | }, | ||
"extra": { | |||
"text-domain": "wpdesk-wp-builder", | |||
"translations-folder": "lang", | |||
"po-files": { | |||
"pl_PL": "pl_PL.po" | |||
} | |||
}, | |||
"scripts": { | "scripts": { | ||
"phpcs": "phpcs", | "phpcs": "phpcs", | ||
"phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never", | "phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never", | ||
... | ... |
Please register or sign in to comment