-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.7 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
{
"name":"cehojac/antonella-framework-for-wp",
"version":"1.7.3",
"keywords": ["framework", "wordpress", "plugins"],
"prefer-stable": true,
"minimum-stability": "dev",
"description":"make easy a WordPress Plugin whit a team. Use this framework for simplycity the work in develop a plugin",
"type":"project",
"authors": [
{
"name": "Carlos Herrera",
"email": "hi@carlos-herrera.com",
"homepage": "https://carlos-herrera.com",
"role": "Developer"
}
],
"support": {
"email": "antonella.framework@carlos-herrera.com",
"docs" : "https://antonellaframework.com/en/documentacion"
},
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"license": "MIT",
"require-dev":{
"vlucas/phpdotenv":"^3.5",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "^0.13.1"
},
"autoload": {
"psr-4": {"SELLERCONTROL\\": "src/"},
"files": [
"src/helpers.php"
]
},
"extra": {
"installer-paths": {
"vendor/{$name}/": ["type:wordpress-plugin","wordpress-muplugin"]
}
},
"scripts":{
"post-create-project-cmd": [
"php antonella namespace",
"php -r \"copy('.env-example', '.env');\"",
"php antonella add blade"
],
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"post-update-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
]
}
}