Squashed commit of the following: commit 4f62b48b77b0b34f2f556083e2271f46d5bd023e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Sep 16 11:38:26 2017 +0100 Update changelog commit 2c41451b24839dfa9a37e6f92bc542cef999aaa9 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Sep 16 11:38:14 2017 +0100 run migrations in deploy script commit 2b1c3af725d366479399afcd8059e9abebade9ee Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:38:08 2017 +0100 Modified CSS for note img links commit fcd6217da3443e28764ed7a810620b54d04b223e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:19:42 2017 +0100 Add responsive image markup commit d900d8067dbf36180fd1bdaca7d34421ba85a413 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:19:24 2017 +0100 Fix issues with logic commit c03d18c5e02c041092ce401f2a814e2a4f8e6fad Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 20:33:39 2017 +0100 Use new column name commit 21d40eab48f9f038cf8ea82880b58d68ecdf0549 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 20:33:12 2017 +0100 Use text column type to give future leeway with how we do this commit abb3b3b1e14a8de58cac8dffcc06d3b8bb06119d Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:36:29 2017 +0100 Some tests of the new job commit 0b11093df16a8c0047520322185706bbdc52c0c4 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:36:13 2017 +0100 This job creates smaller resolution images commit 93449ad2b367bea33e84ec94486125467eaf0394 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:35:52 2017 +0100 Save the media directly to S3, then dispatch the image processing job commit fff232607c18a6681ea4414b6e54c006614f4e5e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:35:06 2017 +0100 Store the image library’s preferences commit 0b908b99a79f8a1294d2c59cd731c18538ffb6ce Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:33:28 2017 +0100 Configure the ligrary to use imagick commit ed13e55e0ce1c0e94860259bf0b1d97a433c89b1 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:32:55 2017 +0100 Add the intervention/image package
85 lines
2.5 KiB
JSON
85 lines
2.5 KiB
JSON
{
|
|
"name": "jonnybarnes/jonnybarnes.uk",
|
|
"description": "The code for jonnybanres.uk, based on Laravel 5.4",
|
|
"keywords": ["framework", "laravel", "indieweb"],
|
|
"license": "CC0-1.0",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=7.1.0",
|
|
"cviebrock/eloquent-sluggable": "~4.3",
|
|
"ezyang/htmlpurifier": "~4.6",
|
|
"fideloper/proxy": "~3.3",
|
|
"guzzlehttp/guzzle": "~6.0",
|
|
"indieauth/client": "~0.1",
|
|
"intervention/image": "^2.4",
|
|
"jonnybarnes/commonmark-linkify": "^0.2",
|
|
"jonnybarnes/emoji-a11y": "^0.3",
|
|
"jonnybarnes/indieweb": "dev-master",
|
|
"jonnybarnes/webmentions-parser": "0.4.*",
|
|
"laravel/framework": "5.5.*",
|
|
"laravel/horizon": "^1.0",
|
|
"laravel/scout": "^3.0",
|
|
"laravel/tinker": "^1.0",
|
|
"lcobucci/jwt": "^3.1",
|
|
"league/commonmark": "^0.15.0",
|
|
"league/flysystem-aws-s3-v3": "^1.0",
|
|
"mf2/mf2": "~0.3",
|
|
"phaza/laravel-postgis": "~3.1",
|
|
"pmatseykanets/laravel-scout-postgres": "~1.0",
|
|
"predis/predis": "~1.0",
|
|
"ramsey/uuid": "^3.5",
|
|
"sensiolabs/security-checker": "^4.0",
|
|
"thujohn/twitter": "~2.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "~3.0",
|
|
"bmitch/churn-php": "^0.2.0",
|
|
"filp/whoops": "~2.0",
|
|
"fzaninotto/faker": "~1.4",
|
|
"jakub-onderka/php-parallel-lint": "^0.9.2",
|
|
"laravel/dusk": "^2.0",
|
|
"mockery/mockery": "0.9.*",
|
|
"phpunit/phpunit": "~6.0",
|
|
"sebastian/phpcpd": "^3.0"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database/seeds",
|
|
"database/factories"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
},
|
|
"files": [
|
|
"helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate"
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
}
|
|
}
|