-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 879 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 879 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
34
35
36
37
38
39
40
41
{
"name": "piedweb/text-spinner",
"type": "library",
"description": "Generate content from a spinned text (content spinning via spinning tool ak rephraser)",
"keywords": [
"Pied Web",
"TextSpinner"
],
"homepage": "https://dev.piedweb.com",
"license": "MIT",
"authors": [
{
"name": "Robin D. (ak Pied Web)",
"email": "contact@robin-d.fr",
"homepage": "https://piedweb.com"
}
],
"require": {
"php": "^7.1|^8.0"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"squizlabs/php_codesniffer": "^3.0",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"PiedWeb\\TextSpinner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PiedWeb\\TextSpinner\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
}
}