1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "spatie/laravel-cors",
- "description": "Send CORS headers in a Laravel or Lumen application",
- "keywords": [
- "spatie",
- "laravel-cors",
- "cors",
- "ajax",
- "request",
- "api"
- ],
- "homepage": "https://github.com/spatie/laravel-cors",
- "license": "MIT",
- "authors": [
- {
- "name": "Freek Van der Herten",
- "email": "freek@spatie.be",
- "homepage": "https://spatie.be",
- "role": "Developer"
- }
- ],
- "require": {
- "php": "^7.2",
- "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0"
- },
- "require-dev": {
- "orchestra/testbench": "3.5.*|3.6.*|3.7.*|3.8.*|^4.0",
- "phpunit/phpunit": "^8.0"
- },
- "autoload": {
- "psr-4": {
- "Spatie\\Cors\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Spatie\\Cors\\Tests\\": "tests"
- }
- },
- "scripts": {
- "test": "vendor/bin/phpunit"
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "laravel": {
- "providers": [
- "Spatie\\Cors\\CorsServiceProvider"
- ]
- }
- }
- }
|