20 lines
330 B
JSON
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"
|
|
}
|
|
}
|