PHP-TEST/composer.json
james d67a54a6b2
Some checks failed
Run Unit Tests / test (push) Failing after 1m31s
new src
2025-05-30 20:57:14 +08:00

20 lines
330 B
JSON

{
"name": "example/php-woodpecker-demo",
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}