67 lines
1.9 KiB
JSON
67 lines
1.9 KiB
JSON
{
|
|
"name": "opdavies/oliverdavies.uk",
|
|
"description": "Oliver Davies personal website",
|
|
"type": "project",
|
|
"keywords": ["sculpin"],
|
|
"homepage": "https://github.com/opdavies/oliverdavies.uk",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Oliver Davies",
|
|
"homepage": "https://www.oliverdavies.uk",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"dev": "@development",
|
|
"development": "sculpin generate --clean --no-interaction",
|
|
"prod": "@production",
|
|
"production": "sculpin generate --clean --no-interaction --env prod",
|
|
"test": [
|
|
"@test-phpcs",
|
|
"@test-phpstan",
|
|
"@test-phpunit"
|
|
],
|
|
"test-phpcs": "php-cs-fixer fix --dry-run",
|
|
"test-phpstan": "phpstan analyze",
|
|
"test-phpunit": "phpunit",
|
|
"watch": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"sculpin generate --clean --no-interaction --watch --server"
|
|
]
|
|
},
|
|
"require": {
|
|
"php": "^7.2",
|
|
"dflydev/embedded-composer": "^1.0@dev",
|
|
"friendsofphp/php-cs-fixer": "^2.14",
|
|
"opdavies/sculpin-gist-embed-bundle": "^0.1",
|
|
"opdavies/sculpin-twig-markdown-bundle": "^0.1",
|
|
"phpstan/phpstan": "^0.11.8",
|
|
"sculpin/sculpin": "^3.0",
|
|
"spatie/string": "^2.2",
|
|
"tightenco/collect": "^6.1",
|
|
"wikimedia/composer-merge-plugin": "^1.4"
|
|
},
|
|
"require-dev": {
|
|
"opdavies/sculpin-content-generator-bundle": "@stable",
|
|
"phpstan/phpstan-deprecation-rules": "^0.11.2",
|
|
"phpunit/phpunit": "^8.4"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.2"
|
|
},
|
|
"sort-packages": true
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"App\\Tests\\": "tests"
|
|
}
|
|
}
|
|
}
|