This repository was archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
116 lines (113 loc) · 4.77 KB
/
composer.json
File metadata and controls
116 lines (113 loc) · 4.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"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"
],
"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": "^7",
"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"
}
}