-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 830 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 830 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
{
"name": "php-ai/php-ml-lambda-examples",
"type": "project",
"description": "php-ml examples deployed on AWS Lambda",
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"require": {
"ext-json": "*",
"php-ai/php-ml": "dev-master",
"symfony/console": "^4.2",
"mnapoli/bref": "^0.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14"
},
"autoload": {
"psr-4": {
"PhpmlLambda\\": "src/"
}
},
"scripts": {
"build": [
"@check-cs"
],
"check-cs": "./vendor/bin/php-cs-fixer fix --config=.php_cs --dry-run",
"fix-cs": "./vendor/bin/php-cs-fixer fix --config=.php_cs"
}
}