-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (57 loc) · 1.49 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
{
"name": "shop/shop_api",
"description": "Shop API Service",
"keywords": [
],
"license": "MIT",
"authors": [
{
"name": "Wajdi Jurry",
"email": "[email protected]",
"homepage": "http://www.mobarmej.net/"
}
],
"require": {
"php": "^7.2.5",
"ext-json": "*",
"akrabat/ip-address-middleware": "^1.0",
"doctrine/annotations": "^1.10",
"dyorg/slim-token-authentication": "^0.3.3",
"ethanhann/redisearch-php": "^1.3",
"firebase/php-jwt": "^5.2",
"gmostafa/php-graphql-client": "^1.8",
"monolog/monolog": "^2.1",
"php-amqplib/php-amqplib": "^2.12",
"php-di/php-di": "^6.2",
"slim/psr7": "^1.1",
"slim/slim": "^4.5",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^0.8.0",
"phpstan/extension-installer": "^1.0.4",
"phpstan/phpstan": "^0.12.37",
"phpunit/phpunit": "^7.3"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit",
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}