Skip to content

Commit

Permalink
Progress on Install Scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rockhopsoft committed Jan 29, 2021
1 parent f8da209 commit 24cded2
Show file tree
Hide file tree
Showing 12 changed files with 462 additions and 135 deletions.
127 changes: 0 additions & 127 deletions scripts/scripts-openpolice-extension/openpolice-extension-mac.sh

This file was deleted.

Binary file removed scripts/scripts-openpoliceorg.zip
Binary file not shown.
Binary file added src/bin/openpolice-database-init.sql.zip
Binary file not shown.
68 changes: 68 additions & 0 deletions src/bin/scripts-openpolice-extension/mac/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.4",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.0",
"laravel/tinker": "^2.0",
"laravel/ui": "^3.0",
"rockhopsoft/survloop": "0.3.*",
"flexyourrights/openpolice": "0.3.*",
"flexyourrights/openpolice-extension": "0.3.*"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.3"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"RockHopSoft\\Survloop\\": "vendor/rockhopsoft/survloop/src/",
"FlexYourRights\\OpenPolice\\": "vendor/flexyourrights/openpolice/src/",
"FlexYourRights\\OpenPoliceExtension\\": "vendor/flexyourrights/openpolice-extension/src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}
Loading

0 comments on commit 24cded2

Please sign in to comment.