-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.02 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
43
44
45
46
47
48
{
"name": "vrkansagara/matrix",
"description": "This is simple package which work with matrix",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Vallabh Kansagara",
"email": "vrkansagara@gmail.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "4.0.x-dev",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^10.2"
},
"autoload": {
"psr-4": {
"Vrkansagara\\Matrix\\": "src/"
},
"files": [
"src/Helpers/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Vrkansagara\\Matrix\\": "tests/"
}
},
"scripts": {
"permission": [
"chmod 0775 -R $(pwd)/vendor",
"chmod +x -R $(pwd)/vendor/bin"
],
"check": [
"@cs-check",
"@test"
],
"cs-check": "./vendor/bin/phpcs -s",
"cs-fix": "./vendor/bin/phpcbf --standard=$(pwd)/phpcs.xml",
"test": "./vendor/bin/phpunit --testdox --colors=always"
},
"minimum-stability": "dev",
"prefer-stable": true
}