-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
75 lines (75 loc) · 2.2 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
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
{
"name": "codelicia/trineforce",
"description": "Salesforce Soql Doctrine Driver",
"homepage": "https://github.com/codelicia/",
"license": "MIT",
"authors": [
{
"name": "Alexandre Eher",
"email": "[email protected]"
},
{
"name": "Jefersson Nathan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1 || ^8.2",
"ext-json": "*",
"ext-pdo": "*",
"azjezz/psl": "^2.7.0",
"doctrine/dbal": "^3.6.6",
"doctrine/orm": "^3.0.0",
"guzzlehttp/guzzle": "^7.8.0",
"guzzlehttp/psr7": "^2.6.1",
"psr/http-message": "2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"infection/infection": "^0.27.0",
"maglnet/composer-require-checker": "^4.6.0",
"malukenho/mcbumpface": "^1.2.0",
"phpunit/phpunit": "^10.3.3",
"roave/security-advisories": "dev-master",
"staabm/annotate-pull-request-from-checkstyle": "^1.8.5"
},
"autoload": {
"psr-4": {
"Codelicia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeliciaTest\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"malukenho/mcbumpface": true,
"infection/extension-installer": true
}
},
"scripts": {
"composer-check": "composer-require-checker check composer.json",
"style-check": "phpcs",
"style-fix": "phpcbf",
"test-mutation": "infection",
"test-unit": "@php -dzend.assertions=1 vendor/bin/phpunit",
"test": [
"@style-check",
"@test-unit",
"@test-mutation",
"@composer-check"
]
},
"scripts-descriptions": {
"style-check": "Check violations on code style",
"style-fix": "Fix violations on code style",
"test": "Run all the tests",
"test-mutation": "Run mutation tests",
"test-unit": "Run unit tests",
"composer-check": "Analyze composer dependencies"
}
}