-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 loc) · 1.58 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
{
"name": "phramework/jsonapi-client",
"description": "JSONAPI client, helps creating SDK to consume your JSON API services",
"homepage": "https://phramework.github.io/",
"license": "Apache-2.0",
"authors": [
{
"name": "Xenofon Spafaridis",
"email": "nohponex@gmail.com",
"homepage": "https://nohponex.gr"
},
{
"name": "Alexandros Kalliontzis",
"email": "alkallio@gmail.com"
}
],
"require": {
"php": "^7.3|^8.0.0",
"phramework/util": "^0.0.0",
"guzzlehttp/guzzle": "^6.3.3|^7.1.1",
"phramework/operator": "*"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "*",
"satooshi/php-coveralls": "^1.0",
"phpunit/phpunit": "^8.0.0",
"slim/slim": "^3.0",
"oscarotero/psr7-middlewares": "^3.16",
"codacy/coverage": "^1.0",
"phramework/jsonapi": "3.x-dev",
"phramework/validate": "1.0.0-RC4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Phramework\\JSONAPI\\Client\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Phramework\\JSONAPI\\APP\\": "tests/APP"
}
},
"scripts": {
"run": [
"echo \"\nStarting web server at http://localhost:8005 ...\n\"",
"php -S localhost:8005 -t tests/APP/public/&"
],
"test": [
"find src/ -name '*.php' -print0 | xargs -0 -L 1 php -l",
"find tests/ -name '*.php' -print0 | xargs -0 -L 1 php -l",
"phpunit"
],
"lint": "php ./vendor/bin/phpcs -p -s --standard=PSR2 ./src ./tests/src"
}
}