PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Fernando Val   Springy   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Springy
Microframework for Web application development
Author: By
Last change: Merge pull request #30 from tavaresdiego/adjusts-deprecated-js

fix: add adjusts deprecated js
feat: upgrade doc and depencencies
feat: v4.6 implementations
Merge remote-tracking branch 'origin/master' into development
Date: 10 days ago
Size: 1,927 bytes
 

Contents

Class file image Download
{ "name": "fval/springy", "description": "Springy", "license": "MIT", "type": "project", "config": { "vendor-dir": "vendor" }, "authors": [ { "name": "Fernando Val", "homepage": "http://fval.com.br", "role": "Developer" } ], "extra": { "installer-paths": { "vendor/{$name}": ["vendor/package"] }, "post-install": { "components/jquery": { "target": "www/assets/jquery", "files": "jquery.min.js" }, "twbs/bootstrap": { "target": "www/assets/bootstrap", "files": [ "dist/css/*", "dist/js/*", "dist/fonts/*" ] } } }, "require-dev": { "squizlabs/php_codesniffer": "^3.5", "phpmd/phpmd": "@stable", "phpunit/phpunit": "~10.5" }, "require": { "php": ">=8.1", "smarty/smarty": "^5.4", "twig/twig": "^2.15", "ircmaxell/password-compat": "^1.0", "matthiasmullie/minify": "^1.3", "sendgrid/sendgrid": "^7.8", "phpmailer/phpmailer": "^6.0", "vlucas/phpdotenv": "^5.6", "components/jquery": "~3.1" }, "autoload": { "files": ["springy/Core/helpers.php"], "psr-4": { "App\\": "app/", "Springy\\": "springy/" } }, "scripts": { "components": "php -f components.php", "phpcs": "phpcs", "phpcbf" : "phpcbf app", "phpunit" : "phpunit", "phpmd" : "phpmd . html codesize.xml > phpmd.html", "test": [ "@phpcs", "@phpmd", "@phpunit" ], "read-me": "Adds @components post-install-cmd and post-update-cmd if needed" }, "repositories": [] }