-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.28 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.28 KB
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
{
"name": "owlstack/owlstack-core",
"description": "Framework-agnostic PHP core for Owlstack — content publishing and synchronization engine for social media platforms.",
"type": "library",
"license": "MIT",
"keywords": [
"owlstack",
"social-media",
"publishing",
"telegram",
"twitter",
"x",
"facebook",
"content-syndication"
],
"authors": [
{
"name": "Ali Hesari",
"email": "ali@alihesari.com",
"homepage": "https://alihesari.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"phpunit/phpunit": "^10.0|^11.0",
"wp-coding-standards/wpcs": "^3.3"
},
"autoload": {
"psr-4": {
"Owlstack\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Owlstack\\Core\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}