-
Notifications
You must be signed in to change notification settings - Fork 4
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
697d54d
commit 82a2780
Showing
1 changed file
with
52 additions
and
52 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,56 +1,56 @@ | ||
{ | ||
"name": "laralabs/toaster", | ||
"description": "Easily generate and bind message JSON data to the view for use in frontend toast components", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Matt Clinton", | ||
"email": "matt@laralabs.uk" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"require": { | ||
"php": "^8.1", | ||
"illuminate/support": "^10.0", | ||
"illuminate/database": "^10.0", | ||
"illuminate/contracts": "^10.0", | ||
"illuminate/session": "^10.0" | ||
}, | ||
"require-dev": { | ||
"roave/security-advisories": "dev-latest", | ||
"mockery/mockery": "^1.0", | ||
"orchestra/testbench": "^8.0", | ||
"phpunit/phpunit": "^9.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Laralabs\\Toaster\\": "src/", | ||
"Laralabs\\Toaster\\Tests\\": "tests/" | ||
"name": "laralabs/toaster", | ||
"description": "Easily generate and bind message JSON data to the view for use in frontend toast components", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Matt Clinton", | ||
"email": "matt@laralabs.uk" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"require": { | ||
"php": "^8.1", | ||
"illuminate/support": "^10.0|^11.0", | ||
"illuminate/database": "^10.0|^11.0", | ||
"illuminate/contracts": "^10.0|^11.0", | ||
"illuminate/session": "^10.0|^11.0" | ||
}, | ||
"files": [ | ||
"src/Helpers/functions.php" | ||
] | ||
}, | ||
"scripts": { | ||
"test": "./vendor/bin/phpunit", | ||
"test:coverage": [ | ||
"@putenv XDEBUG_MODE=coverage", | ||
"vendor/bin/phpunit --log-junit=coverage/phpunit.junit.xml --coverage-cobertura=coverage/cobertura.xml --coverage-text" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Laralabs\\Toaster\\ToasterServiceProvider" | ||
], | ||
"aliases": { | ||
"Toaster": "Laralabs\\Toaster\\Facades\\Toaster" | ||
} | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
"require-dev": { | ||
"roave/security-advisories": "dev-latest", | ||
"mockery/mockery": "^1.0", | ||
"orchestra/testbench": "^8.0|^9.0", | ||
"phpunit/phpunit": "^9.0|^10.5" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Laralabs\\Toaster\\": "src/", | ||
"Laralabs\\Toaster\\Tests\\": "tests/" | ||
}, | ||
"files": [ | ||
"src/Helpers/functions.php" | ||
] | ||
}, | ||
"scripts": { | ||
"test": "./vendor/bin/phpunit", | ||
"test:coverage": [ | ||
"@putenv XDEBUG_MODE=coverage", | ||
"vendor/bin/phpunit --log-junit=coverage/phpunit.junit.xml --coverage-cobertura=coverage/cobertura.xml --coverage-text" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Laralabs\\Toaster\\ToasterServiceProvider" | ||
], | ||
"aliases": { | ||
"Toaster": "Laralabs\\Toaster\\Facades\\Toaster" | ||
} | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
} | ||
} |