PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Angel Campos   PHP Application Skeleton   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Application Skeleton
Base skeleton to build new packages
Author: By
Last change: Update composer.json
Date: 14 days ago
Size: 1,733 bytes
 

Contents

Class file image Download
{ "name": "acamposm/skeleton", "description": "Skeleton for my PHP packages", "keywords": ["php", "skeleton", "package"], "type": "library", "license": "MIT", "version": "1.0.0", "authors": [ { "name": "Angel Campos Muņoz", "email": "angel.campos.m@outlok.com", "role": "developer" } ], "require": { "php": "^8.2.0" }, "require-dev": { "laravel/pint": "^1.10", "orchestra/testbench": "^8.5", "phpstan/phpstan": "^1.10", "phpunit/php-code-coverage": "^10.1", "phpunit/phpunit": "^10" }, "autoload": { "psr-4": { "Acamposm\\Skeleton\\": "src/" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "minimum-stability": "stable", "prefer-stable": true, "config": { "preferred-install": "dist", "sort-packages": true }, "extra": { "laravel": { "aliases": [], "providers": [] } }, "scripts": { "tests": [ "@test:lint", "@test:sast", "@tests:unit" ], "test": "phpunit --colors=always --no-progress --testdox tests", "test:lint": "pint --test", "test:list-groups": "phpunit --list-groups", "test:list-tests": "phpunit --list-tests", "test:list-suites": "phpunit --list-suites", "test:sast": "phpstan analyse --ansi src/ tests/", "tests:integration": "phpunit --colors=always --no-progress --testdox --testsuite integration", "tests:unit": "phpunit --colors=always --no-progress --testdox --testsuite unit" } }