generated from 8fold/github-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.35 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
{
"name": "8fold/php-printify-sdk",
"type": "library",
"description": "A library for interacting with the Printify API.",
"license": "MIT",
"authors": [
{
"name": "Josh Bruce",
"email": "josh@8fold.pro",
"homepage": "https://joshbruce.com",
"role": "Lead Developer"
}
],
"support": {
},
"require": {
"php": "^8.1",
"kriswallsmith/buzz": "^1.2",
"nyholm/psr7": "^1.5",
"nyholm/psr7-server": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"Eightfold\\Printify\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Eightfold\\Printify\\Tests\\": "./tests"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"prefer-stable": true,
"scripts": {
"prod": "@production",
"production": [
"composer dumpautoload -o",
"@style",
"@stan",
"@test"
],
"deploy": [
"@production",
"@optimize-autoload"
],
"style": "./vendor/bin/phpcs --standard=phpcs.xml",
"stan": "./vendor/bin/phpstan analyze",
"test": "./vendor/bin/phpunit",
"optimize-autoload": "composer dumpautoload --no-dev --classmap-authoritative"
}
}