-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.22 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "jamesking.dev/20i-sdk",
"description": "20i.com Reseller API SDK",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "James King",
"email": "james@jamesking.dev"
}
],
"require": {
"php": "^8.2",
"saloonphp/saloon": "^3.0",
"spatie/laravel-data": "^3.0 || ^4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"jamesking.dev/coding-standards": "^0.1.0",
"laravel/pint": "^1.26",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"JamesKingDev\\TwentyI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\Custom\\": "rector/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"sort-packages": true,
"lock": false
},
"scripts": {
"cs": [
"vendor/bin/rector",
"vendor/bin/pint --config vendor/jamesking.dev/coding-standards/pint.json"
],
"cstest": "vendor/bin/pint --test --config vendor/jamesking.dev/coding-standards/pint.json"
}
}