|
| 1 | +{ |
| 2 | + "name": "calebdw/sql-entities", |
| 3 | + "description": "Manage SQL entities in Laravel with ease.", |
| 4 | + "keywords": [ |
| 5 | + "php", |
| 6 | + "laravel", |
| 7 | + "database", |
| 8 | + "sql", |
| 9 | + "entities" |
| 10 | + ], |
| 11 | + "type": "library", |
| 12 | + "license": "MIT", |
| 13 | + "authors": [ |
| 14 | + { |
| 15 | + "name": "Caleb White", |
| 16 | + "email": "cdwhite3@pm.me" |
| 17 | + } |
| 18 | + ], |
| 19 | + "homepage": "https://github.com/calebdw/laravel-sql-entities", |
| 20 | + "autoload": { |
| 21 | + "psr-4": { |
| 22 | + "CalebDW\\SqlEntities\\": "src/" |
| 23 | + } |
| 24 | + }, |
| 25 | + "autoload-dev": { |
| 26 | + "psr-4": { |
| 27 | + "CalebDW\\SqlEntities\\Tests\\": "tests/", |
| 28 | + "Workbench\\App\\": "workbench/app/", |
| 29 | + "Workbench\\Database\\Entities\\": "workbench/database/entities/" |
| 30 | + } |
| 31 | + }, |
| 32 | + "require": { |
| 33 | + "php": "^8.4", |
| 34 | + "illuminate/contracts": "^11.0 || ^12.0", |
| 35 | + "illuminate/database": "^11.0 || ^12.0", |
| 36 | + "illuminate/support": "^11.0 || ^12.0" |
| 37 | + }, |
| 38 | + "require-dev": { |
| 39 | + "calebdw/larastan": "^3.0", |
| 40 | + "laravel/pint": "^1.16.2", |
| 41 | + "orchestra/testbench": "^9.0 || ^10.0", |
| 42 | + "pestphp/pest": "^3.0" |
| 43 | + }, |
| 44 | + "extra": { |
| 45 | + "laravel": { |
| 46 | + "providers": [ |
| 47 | + "CalebDW\\SqlEntities\\ServiceProvider" |
| 48 | + ] |
| 49 | + } |
| 50 | + }, |
| 51 | + "config": { |
| 52 | + "sort-packages": true, |
| 53 | + "preferred-install": "dist", |
| 54 | + "allow-plugins": { |
| 55 | + "pestphp/pest-plugin": true |
| 56 | + } |
| 57 | + }, |
| 58 | + "scripts": { |
| 59 | + "test:lint": "pint --test", |
| 60 | + "test:lint-fix": "pint", |
| 61 | + "test:static": "phpstan analyze --ansi -v", |
| 62 | + "test:unit": "pest", |
| 63 | + "test:coverage": [ |
| 64 | + "@putenv XDEBUG_MODE=coverage", |
| 65 | + "pest --coverage" |
| 66 | + ], |
| 67 | + "test": [ |
| 68 | + "@test:static", |
| 69 | + "@test:coverage" |
| 70 | + ], |
| 71 | + "post-autoload-dump": [ |
| 72 | + "@prepare" |
| 73 | + ], |
| 74 | + "prepare": "@php vendor/bin/testbench package:discover --ansi" |
| 75 | + }, |
| 76 | + "prefer-stable": true, |
| 77 | + "minimum-stability": "dev" |
| 78 | +} |
0 commit comments