This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/composer.json

67 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2015-08-08 16:51:10 +00:00
{
2019-04-11 00:25:19 +00:00
"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"
}
],
2017-09-19 06:17:21 +00:00
"scripts": {
2019-11-12 20:37:52 +00:00
"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",
2019-10-06 21:30:35 +00:00
"sculpin generate --clean --no-interaction --watch --server"
2019-06-26 00:03:00 +00:00
]
2017-09-19 06:17:21 +00:00
},
2015-08-08 16:51:10 +00:00
"require": {
2019-04-10 16:00:48 +00:00
"php": "^7.2",
2016-06-01 11:08:26 +00:00
"dflydev/embedded-composer": "^1.0@dev",
2019-04-14 07:23:06 +00:00
"friendsofphp/php-cs-fixer": "^2.14",
2017-03-18 10:56:53 +00:00
"opdavies/sculpin-gist-embed-bundle": "^0.1",
2017-03-18 10:45:21 +00:00
"opdavies/sculpin-twig-markdown-bundle": "^0.1",
2019-06-26 00:03:00 +00:00
"phpstan/phpstan": "^0.11.8",
2019-04-11 07:57:42 +00:00
"sculpin/sculpin": "^3.0",
2020-03-10 20:19:27 +00:00
"spatie/string": "^2.2",
"tightenco/collect": "^6.1",
2017-10-27 23:31:21 +00:00
"wikimedia/composer-merge-plugin": "^1.4"
2016-11-30 08:09:48 +00:00
},
2017-09-06 17:01:29 +00:00
"require-dev": {
2017-11-01 17:24:23 +00:00
"opdavies/sculpin-content-generator-bundle": "@stable",
2019-06-26 00:03:00 +00:00
"phpstan/phpstan-deprecation-rules": "^0.11.2",
"phpunit/phpunit": "^8.4"
2017-09-06 17:01:29 +00:00
},
2016-11-30 08:09:48 +00:00
"config": {
2019-12-08 20:16:43 +00:00
"platform": {
"php": "7.2"
},
2016-12-23 23:23:48 +00:00
"sort-packages": true
2018-05-09 22:24:08 +00:00
},
"autoload": {
"psr-4": {
2020-03-11 21:30:20 +00:00
"App\\": "src"
}
2018-05-09 22:24:08 +00:00
},
"autoload-dev": {
"psr-4": {
2020-03-11 21:30:20 +00:00
"App\\Tests\\": "tests"
2018-05-09 22:24:08 +00:00
}
2015-08-08 16:51:10 +00:00
}
}