-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 KB
/
composer.json
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
{
"name": "marcosmarcolin/fricc2_encrypter",
"description": "Encrypt your php files using the fricc2 extension.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcos Marcolin",
"email": "[email protected]",
"homepage": "https://www.marcosmarcolin.com.br",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"MarcosMarcolin\\Fricc2Encrypter\\": "src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "@stable",
"phpunit/phpunit": "^9.5",
"nunomaduro/phpinsights": "@stable"
},
"scripts": {
"phpcs": "./vendor/bin/phpcs --standard=PSR12 src",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR12 src",
"phpinsights": "./vendor/bin/phpinsights analyse src",
"phpinsights-fix": "./vendor/bin/phpinsights analyse src --fix"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}