-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8da209
commit 24cded2
Showing
12 changed files
with
462 additions
and
135 deletions.
There are no files selected for viewing
127 changes: 0 additions & 127 deletions
127
scripts/scripts-openpolice-extension/openpolice-extension-mac.sh
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
} |
Oops, something went wrong.