-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.41 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
{
"name": "petstore/sdk",
"type": "library",
"description": "Petstore SDK.",
"keywords": [
"petstore",
"api",
"sdk",
"rest",
"php"
],
"homepage": "https://github.com/remarkablemark/janephp-template",
"license": "MIT",
"authors": [
{
"name": "Mark",
"email": "mark@remarkablemark.org",
"homepage": "https://remarkablemark.org",
"role": "Developer"
}
],
"require": {
"jane-php/open-api-runtime": "7.8.1",
"php": ">=8.0"
},
"require-dev": {
"jane-php/open-api-3": "7.8.1",
"nyholm/psr7": "^1.8",
"friendsofphp/php-cs-fixer": "^3.22",
"pestphp/pest": "^1.23 || ^2.0",
"php-http/guzzle7-adapter": "^1.0",
"symfony/http-kernel": "^6.4"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"Petstore\\": "lib/"
}
},
"scripts": {
"build": [
"composer update",
"vendor/bin/jane-openapi generate",
"cp src/Petstore.php lib/Petstore.php"
],
"clean": [
"rm -rf lib/"
],
"test": [
"composer dumpautoload",
"vendor/bin/pest"
]
},
"version": "1.0.0-alpha"
}