| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "spatie/menu",
- "description": "Html menu generator",
- "keywords": [
- "spatie",
- "navigation",
- "menu"
- ],
- "homepage": "https://github.com/spatie/menu",
- "license": "MIT",
- "authors": [
- {
- "name": "Sebastian De Deyne",
- "email": "sebastian@spatie.be",
- "homepage": "https://spatie.be",
- "role": "Developer"
- }
- ],
- "require": {
- "php" : "^8.0",
- "spatie/url": "^2.0.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.0",
- "vimeo/psalm": "^4.0",
- "larapack/dd": "^1.0",
- "pestphp/pest": "^1.22"
- },
- "autoload": {
- "psr-4": {
- "Spatie\\Menu\\": "src"
- }
- },
- "autoload-dev": {
- "files": [
- "tests/callables.php"
- ],
- "psr-4": {
- "Spatie\\Menu\\Test\\": "tests"
- }
- },
- "scripts": {
- "psalm": "vendor/bin/psalm",
- "test": "vendor/bin/pest"
- },
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/spatie"
- },
- {
- "type": "other",
- "url": "https://spatie.be/open-source/support-us"
- }
- ],
- "config": {
- "allow-plugins": {
- "pestphp/pest-plugin": true
- }
- }
- }
|