-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 942 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 942 Bytes
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
{
"name": "turbolabit/php-symfony-shopify-sdk",
"description": "",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"TurboLabIt\\ShopifySdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TurboLabIt\\ShopifySdk\\tests\\": "tests/"
}
},
"authors": [
{
"name": "Zane"
}
],
"require": {
"php": "^8.2",
"saloonphp/saloon": "^2.0",
"symfony/twig-pack": "^1.0",
"symfony/http-client": "@stable"
},
"require-dev": {
"symfony/yaml": "^6.3",
"symfony/dotenv": "^6.3",
"symfony/config": "^6.3",
"symfony/dependency-injection": "^6.3",
"symfony/http-kernel": "^6.3",
"symfony/test-pack": "^1.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": false,
"symfony/flex": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}