Skip to content

Commit

Permalink
update phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
madflow committed Feb 21, 2024
1 parent 2f212aa commit f74ad9e
Showing 1 changed file with 44 additions and 35 deletions.
79 changes: 44 additions & 35 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,47 @@
{
"name": "madflow/cheesecake",
"description": "Create projects or directory structures from templates",
"license": "MIT",
"keywords": ["generator", "project", "starter", "bootstrap"],
"homepage": "https://github.com/madflow/cheesecake",
"authors": [{
"name": "madflow",
"email": "[email protected]"
}],
"require": {
"php": ">=7.1.0",
"mustache/mustache": "^2.9",
"docopt/docopt": "1.0.0",
"cypresslab/gitelephant": "~3.0",
"wp-cli/php-cli-tools": "^0.10.5",
"symfony/process": "^3.4||^4.4||^5.0",
"symfony/filesystem": "^3.4||^4.4||^5.0",
"symfony/finder": "^3.4||^4.4||^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.4"
},
"autoload": {
"psr-4": {
"Cheesecake\\": "src/Cheesecake"
}
},
"autoload-dev": {
"psr-4": {
"Cheesecake\\Test\\": "tests/Cheesecake"
}
},
"bin": ["bin/cheesecake"],
"scripts": {
"test": "phpunit"
"name": "madflow/cheesecake",
"description": "Create projects or directory structures from templates",
"license": "MIT",
"keywords": [
"generator",
"project",
"starter",
"bootstrap"
],
"homepage": "https://github.com/madflow/cheesecake",
"authors": [
{
"name": "madflow",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4||^8.0",
"mustache/mustache": "^2.9",
"docopt/docopt": "1.0.0",
"cypresslab/gitelephant": "~3.0",
"wp-cli/php-cli-tools": "^0.10.5",
"symfony/process": "^3.4||^4.4||^5.0",
"symfony/filesystem": "^3.4||^4.4||^5.0",
"symfony/finder": "^3.4||^4.4||^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Cheesecake\\": "src/Cheesecake"
}
},
"autoload-dev": {
"psr-4": {
"Cheesecake\\Test\\": "tests/Cheesecake"
}
},
"bin": [
"bin/cheesecake"
],
"scripts": {
"test": "phpunit"
}
}

0 comments on commit f74ad9e

Please sign in to comment.