Skip to content
This repository was archived by the owner on Feb 22, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
225 changes: 113 additions & 112 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,116 +1,117 @@
{
"name": "cocoytech/codeigniter-iii-ultimate",
"description": "All best practices and setup for codeigniter 3 all thru the tutorials and webs",
"type": "project",
"license": "MIT",
"homepage": "https://codeigniter3.cocoytech.com",
"readme": "README.md",
"time": "2019-12-01",
"authors": [
{
"name": "Francisco Abayon",
"email": "francisco.abayon@rafi.ph",
"homepage": "https://cocoytech.com",
"role": "Developer"
}
"name": "cocoytech/codeigniter-iii-ultimate",
"description": "All best practices and setup for codeigniter 3 all thru the tutorials and webs",
"type": "project",
"license": "MIT",
"homepage": "https://codeigniter3.cocoytech.com",
"readme": "README.md",
"time": "2019-12-01",
"authors": [
{
"name": "Francisco Abayon",
"email": "francisco.abayon@rafi.ph",
"homepage": "https://cocoytech.com",
"role": "Developer"
}
],
"support": {
"email": "franz.noyaba@gmail.com",
"issues": "https://github.com/cocoytech/codeigniter-iii-ultimate/issues",
"forum": "https://github.com/cocoytech/codeigniter-iii-ultimate/docs",
"wiki": "https://github.com/cocoytech/codeigniter-iii-ultimate/docs",
"irc": "irc://irc.freenode.org/composer",
"source": "https://github.com/cocoytech/codeigniter-iii-ultimate",
"docs": "https://github.com/cocoytech/codeigniter-iii-ultimate/docs"
},
"scripts": {
"check-isvalid": [
"@composer validate --no-check-all --ansi"
],
"support": {
"email": "franz.noyaba@gmail.com",
"issues": "https://github.com/cocoytech/codeigniter-iii-ultimate/issues",
"forum": "https://github.com/cocoytech/codeigniter-iii-ultimate/docs",
"wiki": "https://github.com/cocoytech/codeigniter-iii-ultimate/docs",
"irc": "irc://irc.freenode.org/composer",
"source": "https://github.com/cocoytech/codeigniter-iii-ultimate",
"docs": "https://github.com/cocoytech/codeigniter-iii-ultimate/docs"

},
"scripts": {
"check-isvalid": [
"@composer validate --no-check-all --ansi"
],
"check-phpcs": [
"vendor\\bin\\phpcs --report-full --standard=PSR2 application/"
],
"check-profile": [
"@composer show -i",
"@composer show -t",
"@composer -vvv --profile"
],
"check-security": [
"@composer update --dry-run roave/security-advisories",
"@composer update --dry-run --profile -vvv"
],
"check-test": [
"vendor\\bin\\phpunit --dump-xdebug-filter ../../bin/xdebug-filter.php",
"vendor\\bin\\phpunit --prepend bin/xdebug-filter.php -vvv --testdox --colors=always"
],
"fix-cache": [
"@composer dump-autoload --optimize --classmap-authoritative",
"rm -rf vendor composer.lock",
"@composer clearcache"
],
"fix-invalid": [
"vendor\\bin\\phpcbf application/"
],
"install-lowest": "validate-prefer-lowest -m",
"install-lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"install-production": [
"@composer install --no-dev --optimize-autoloader --apcu-autoloader"
],

"update-package": [
"@composer update drupal/core --with-dependencies --lock"
]

},
"scripts-descriptions": {
"check-isvalid": "Checks the composer.json will build and validate.",
"check-phpcs": "Checks if the application practice follows the standard setup and guidelines.",
"check-profile": "Checks the composer library and its corresponding info with the dependencies.",
"check-security": "Checks the library dependency if there is outdate with security risk.",
"check-test": "Checks the composer.json will build and validate.",
"fix-cache": "Nuke the composer current setup and reset everything.",
"fix-invalid": "Runs the phpcbf to autofix some error code from application standard setup.",
"install-lowest": "Runs to validate the lowest depenency library if its compatible.",
"install-lowest-setup": "Install the MVP to its corresponding library and dependencies to avoid version conflict.",
"install-production": "Install the standard setup with code efficiently."
},
"require": {
"php": "7.2.* || 7.3.*",
"codeigniter/framework": "^3.1.0",
"cweagans/composer-patches": "^1.6",
"phpunit/phpunit": "^9",
"kenjis/ci-phpunit-test": "0.17.0",
"squizlabs/php_codesniffer": "^3.3",
"hirak/prestissimo": "^0.3.9"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"phpmd/phpmd": "^2.6",
"dereuromark/composer-prefer-lowest": "^0.1.4",
"nerones/codeigniter-phpcs": "dev-master",
"roave/security-advisories": "dev-master"
},
"autoload": {
"exclude-from-classmap": ["/Tests/", "/test/", "/tests/"]
},
"autoload-dev": {
"psr-4": {
"Acme\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.3"
},
"sort-packages": true,
"secure-http": true,
"htaccess-protect" : true
},
"suggest": {
"kenjis/codeigniter-cli": "A command-line tool for CodeIgniter 3.0",
"kenjis/codeigniter-ss-twig": "A Simple and Secure Twig integration for CodeIgniter 3.0",
"kenjis/codeigniter-doctrine": "A simple Doctrine integration for CodeIgniter 3.0",
"kenjis/codeigniter-deployer": "A Deployment Tool for CodeIgniter 3.0"
"check-phpcs": [
"vendor\\bin\\phpcs --report-full --standard=PSR2 application/"
],
"check-profile": [
"@composer show -i",
"@composer show -t",
"@composer -vvv --profile"
],
"check-security": [
"@composer update --dry-run roave/security-advisories",
"@composer update --dry-run --profile -vvv"
],
"check-test": [
"vendor\\bin\\phpunit --dump-xdebug-filter ../../bin/xdebug-filter.php",
"vendor\\bin\\phpunit --prepend bin/xdebug-filter.php -vvv --testdox --colors=always"
],
"fix-cache": [
"@composer dump-autoload --optimize --classmap-authoritative",
"rm -rf vendor composer.lock",
"@composer clearcache"
],
"fix-invalid": [
"vendor\\bin\\phpcbf application/"
],
"install-lowest": "validate-prefer-lowest -m",
"install-lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"install-production": [
"@composer install --no-dev --optimize-autoloader --apcu-autoloader"
],
"update-package": [
"@composer update drupal/core --with-dependencies --lock"
]
},
"scripts-descriptions": {
"check-isvalid": "Checks the composer.json will build and validate.",
"check-phpcs": "Checks if the application practice follows the standard setup and guidelines.",
"check-profile": "Checks the composer library and its corresponding info with the dependencies.",
"check-security": "Checks the library dependency if there is outdate with security risk.",
"check-test": "Checks the composer.json will build and validate.",
"fix-cache": "Nuke the composer current setup and reset everything.",
"fix-invalid": "Runs the phpcbf to autofix some error code from application standard setup.",
"install-lowest": "Runs to validate the lowest depenency library if its compatible.",
"install-lowest-setup": "Install the MVP to its corresponding library and dependencies to avoid version conflict.",
"install-production": "Install the standard setup with code efficiently."
},
"require": {
"php": "7.2.* || 7.3.*",
"codeigniter/framework": "^3.1.0",
"cweagans/composer-patches": "^1.6",
"phpunit/phpunit": "^9",
"kenjis/ci-phpunit-test": "0.17.0",
"squizlabs/php_codesniffer": "^3.3",
"hirak/prestissimo": "^0.3.9"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"phpmd/phpmd": "^2.6",
"dereuromark/composer-prefer-lowest": "^0.1.4",
"nerones/codeigniter-phpcs": "dev-master",
"roave/security-advisories": "dev-master"
},
"autoload": {
"exclude-from-classmap": [
"/Tests/",
"/test/",
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Acme\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.3"
},
"sort-packages": true,
"secure-http": true,
"htaccess-protect": true
},
"suggest": {
"kenjis/codeigniter-cli": "A command-line tool for CodeIgniter 3.0",
"kenjis/codeigniter-ss-twig": "A Simple and Secure Twig integration for CodeIgniter 3.0",
"kenjis/codeigniter-doctrine": "A simple Doctrine integration for CodeIgniter 3.0",
"kenjis/codeigniter-deployer": "A Deployment Tool for CodeIgniter 3.0"
}
}